534bb94eea
Test Migrations / Migrations (SQLite) (push) Has been cancelled
Build Dev Image / build-dev-image (push) Has been cancelled
Check i18n Keys / Check i18n Key Consistency (push) Has been cancelled
Lint / Ruff Lint & Format (push) Has been cancelled
Lint / Frontend Lint (push) Has been cancelled
Test Migrations / Migrations (PostgreSQL) (push) Has been cancelled
10 lines
327 B
TypeScript
10 lines
327 B
TypeScript
import { Outlet } from 'react-router-dom';
|
|
import { useDocumentTitle } from '@/hooks/useDocumentTitle';
|
|
|
|
// Top-level route layout: drives the dynamic document title from the active
|
|
// route and renders the matched child route via <Outlet />.
|
|
export default function RootLayout() {
|
|
useDocumentTitle();
|
|
return <Outlet />;
|
|
}
|