feat: deals table

This commit is contained in:
2024-08-10 06:53:45 +03:00
parent be9c8e604f
commit bb4324822a
15 changed files with 327 additions and 18 deletions

View File

@@ -0,0 +1,6 @@
import {createLazyFileRoute} from '@tanstack/react-router'
import {DealsPage} from "../pages/DealsPage";
export const Route = createLazyFileRoute('/deals')({
component: DealsPage
})