initial commit
This commit is contained in:
6
apps/frontend/src/routes/__root.tsx
Normal file
6
apps/frontend/src/routes/__root.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import { createRootRoute } from "@tanstack/react-router";
|
||||
import { Layout } from "@/components/layout/Layout";
|
||||
|
||||
export const Route = createRootRoute({
|
||||
component: Layout,
|
||||
});
|
||||
6
apps/frontend/src/routes/expenses.tsx
Normal file
6
apps/frontend/src/routes/expenses.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import { ExpensesPage } from "@/features/expenses/ExpensesPage";
|
||||
|
||||
export const Route = createFileRoute("/expenses")({
|
||||
component: ExpensesPage,
|
||||
});
|
||||
6
apps/frontend/src/routes/index.tsx
Normal file
6
apps/frontend/src/routes/index.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import { DashboardPage } from "@/features/dashboard/DashboardPage";
|
||||
|
||||
export const Route = createFileRoute("/")({
|
||||
component: DashboardPage,
|
||||
});
|
||||
6
apps/frontend/src/routes/quotes.belo.tsx
Normal file
6
apps/frontend/src/routes/quotes.belo.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import { BeloPage } from "@/features/belo/BeloPage";
|
||||
|
||||
export const Route = createFileRoute("/quotes/belo")({
|
||||
component: BeloPage,
|
||||
});
|
||||
6
apps/frontend/src/routes/quotes.index.tsx
Normal file
6
apps/frontend/src/routes/quotes.index.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import { QuotesPage } from "@/features/quotes/QuotesPage";
|
||||
|
||||
export const Route = createFileRoute("/quotes/")({
|
||||
component: QuotesPage,
|
||||
});
|
||||
9
apps/frontend/src/routes/quotes.tsx
Normal file
9
apps/frontend/src/routes/quotes.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { createFileRoute, Outlet } from "@tanstack/react-router";
|
||||
|
||||
export const Route = createFileRoute("/quotes")({
|
||||
component: QuotesLayout,
|
||||
});
|
||||
|
||||
function QuotesLayout() {
|
||||
return <Outlet />;
|
||||
}
|
||||
Reference in New Issue
Block a user