summaryrefslogtreecommitdiff
path: root/src/App.tsx
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-04-21 21:25:01 -0600
committerHombreLaser <sebastian-440@live.com>2023-04-21 21:25:01 -0600
commita417af928cd42e8a6749d69ac661182b3e1249a8 (patch)
treedd1a3a52efcbc2d9a4bce1cf24bee4d8b37bfbb5 /src/App.tsx
parent3e94d2245182d3c399585e04e0f5b2de8492e0e9 (diff)
Añade organización general de la página
Diffstat (limited to 'src/App.tsx')
-rw-r--r--src/App.tsx18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/App.tsx b/src/App.tsx
deleted file mode 100644
index fb597d0..0000000
--- a/src/App.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-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