mirror of
https://github.com/elisiariocouto/leggen.git
synced 2025-12-29 12:09:16 +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>")
7 lines
206 B
TypeScript
7 lines
206 B
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
import AccountSettings from "../components/AccountSettings";
|
|
|
|
export const Route = createFileRoute("/settings")({
|
|
component: AccountSettings,
|
|
});
|