chore: remove unused import
This commit is contained in:
parent
052f42b580
commit
a6e81f421d
1 changed files with 2 additions and 0 deletions
|
|
@ -5,6 +5,7 @@ import Home from "@/pages/home"
|
||||||
import "./App.css"
|
import "./App.css"
|
||||||
import Tag from "./templates/Tag"
|
import Tag from "./templates/Tag"
|
||||||
import Entry from "./templates/Entry"
|
import Entry from "./templates/Entry"
|
||||||
|
import Settings from "./pages/Settings"
|
||||||
|
|
||||||
const queryClient = new QueryClient({
|
const queryClient = new QueryClient({
|
||||||
defaultOptions: {
|
defaultOptions: {
|
||||||
|
|
@ -22,6 +23,7 @@ export default function App() {
|
||||||
<QueryClientProvider client={queryClient}>
|
<QueryClientProvider client={queryClient}>
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route index element={<Home />} />
|
<Route index element={<Home />} />
|
||||||
|
<Route path="/settings" element={<Settings />} />
|
||||||
<Route path="/entries/:entry" element={<Entry />} />
|
<Route path="/entries/:entry" element={<Entry />} />
|
||||||
<Route path="/tags/:tag" element={<Tag />} />
|
<Route path="/tags/:tag" element={<Tag />} />
|
||||||
</Routes>
|
</Routes>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue