summaryrefslogtreecommitdiff
path: root/src/App.tsx
blob: fb597d014e4b18682a9905d0e7b8cd06e84296d3 (plain)
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