feat(freight:backoffice): added basic frontend integration with auth(login) page

This commit is contained in:
Michael Abebe
2026-05-22 17:15:46 +03:00
parent f9a9d9923c
commit 2c9ca6f16b
30 changed files with 515 additions and 3301 deletions

View File

@@ -1,7 +1,7 @@
import { Table as TanstackTable } from "@tanstack/react-table";
import { TableCell, TableRow } from "#components/table";
import { Button } from "#components/button.tsx";
import { TableCell, TableRow } from "../table";
import { Button } from "../button";
export function DataTableError({
table,

View File

@@ -1,7 +1,7 @@
import { Table as TanstackTable } from "@tanstack/react-table";
import { Skeleton } from "../skeleton";
import { TableCell, TableRow } from "#components/table";
import { TableCell, TableRow } from "../table";
export function DataTableSkeleton({ table }: { table: TanstackTable<any> }) {
return Array.from({ length: 10 }).map((_, i) => (

View File

@@ -11,7 +11,7 @@ import {
TableHead,
TableHeader,
TableRow,
} from "#components/table";
} from "../table";
import { DataTableProps } from "./types";
import { DataTableSkeleton } from "./skeleton";
import { DataTableError } from "./error";