mirror of
https://github.com/elisiariocouto/leggen.git
synced 2025-12-13 23:12:16 +00:00
- Create new tabbed Settings component combining accounts and notifications - Extract sync operations into dedicated System component - Update routing: /notifications → /system with proper navigation labels - Remove duplicate page headers (using existing SiteHeader) - Add shadcn tabs component for better UX - Fix mypy error in database_service.py (handle None lastrowid) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
import System from "../components/System";
|
|
|
|
export const Route = createFileRoute("/system")({
|
|
component: System,
|
|
});
|