summaryrefslogtreecommitdiff
path: root/src/App.tsx
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-04-21 18:39:50 -0600
committerHombreLaser <sebastian-440@live.com>2023-04-21 18:39:50 -0600
commit3e94d2245182d3c399585e04e0f5b2de8492e0e9 (patch)
treef72f527573dd7020360957d077057366fe3bd2b4 /src/App.tsx
Commit inicial
Diffstat (limited to 'src/App.tsx')
-rw-r--r--src/App.tsx18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/App.tsx b/src/App.tsx
new file mode 100644
index 0000000..fb597d0
--- /dev/null
+++ b/src/App.tsx
@@ -0,0 +1,18 @@
+import { ApiClient } from "./clients/api_client";
+import { useState } from 'react'
+import { Offcanvas, Ripple, Dropdown, initTE } from "tw-elements";
+import './App.css'
+
+function App() {
+ initTE({ Offcanvas, Ripple, Dropdown });
+
+ return (
+ <>
+ <div className="flex space-x-2">
+ <h1>Hello, world</h1>
+ </div>
+ </>
+ )
+}
+
+export default App