1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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