init frontend
This commit is contained in:
18
taskncoffee-app/src/App.jsx
Normal file
18
taskncoffee-app/src/App.jsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import './App.css'
|
||||
import { useState } from "react"
|
||||
import ExitAnimation from "./components/buttons"
|
||||
|
||||
function App() {
|
||||
const [show, setShow] = useState(true)
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="App">
|
||||
<h1>My App</h1>
|
||||
<ExitAnimation />
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
export default App
|
||||
Reference in New Issue
Block a user