mirror of
https://github.com/elisiariocouto/leggen.git
synced 2025-12-13 13:42:19 +00:00
Added comprehensive settings page with account settings component, integrated with existing layout and routing structure. Updated project documentation with frontend architecture details. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>")
12 lines
404 B
TypeScript
12 lines
404 B
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
import TransactionsTable from "../components/TransactionsTable";
|
|
|
|
export const Route = createFileRoute("/")({
|
|
component: TransactionsTable,
|
|
validateSearch: (search) => ({
|
|
accountId: search.accountId as string | undefined,
|
|
startDate: search.startDate as string | undefined,
|
|
endDate: search.endDate as string | undefined,
|
|
}),
|
|
});
|