timetracker/frontend/src/App.jsx

21 lines
533 B
React
Raw Normal View History

2023-01-25 11:56:32 +00:00
import { useState } from "react";
import "./App.css";
import Nav from "./components/Nav";
2023-01-25 10:44:04 +00:00
function App() {
2023-01-25 11:56:32 +00:00
const [count, setCount] = useState(0);
2023-01-25 10:44:04 +00:00
return (
2023-01-25 11:47:39 +00:00
<>
2023-01-25 11:56:32 +00:00
<div className="dark:bg-gray-800 min-h-screen">
<Nav />
{/* {% block content %}No content here.{% endblock content %} */}
</div>
{/* {% load version %} */}
{/* <span className="fixed left-2 bottom-2 text-xs text-slate-300 dark:text-slate-600">{% version %} ({% version_date %})</span> */}
</>
);
2023-01-25 10:44:04 +00:00
}
2023-01-25 11:56:32 +00:00
export default App;