mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2024-12-28 23:00:44 -05:00
18 lines
280 B
React
18 lines
280 B
React
|
import { useState } from "react";
|
||
|
import "./App.css";
|
||
|
import Main from "./components/main";
|
||
|
import Navbar from "./components/navbar";
|
||
|
|
||
|
function App() {
|
||
|
const [count, setCount] = useState(0);
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<Navbar />
|
||
|
<Main />
|
||
|
</>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default App;
|