diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-11-19 22:34:07 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-11-19 22:34:20 +0100 |
| commit | 747c579b15c54dc5dbc50482d3361761853e007a (patch) | |
| tree | 13587e5825bd5353fe75f4129c0746f28bba4cea /src/frontend/app/components/layout/AppShell.tsx | |
| parent | d51169f6411b68a226d76d2d39826904de484929 (diff) | |
feat: Refactor layout and styles for StopList and related components; add ThemeColorManager for dynamic theme support
Diffstat (limited to 'src/frontend/app/components/layout/AppShell.tsx')
| -rw-r--r-- | src/frontend/app/components/layout/AppShell.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/frontend/app/components/layout/AppShell.tsx b/src/frontend/app/components/layout/AppShell.tsx index d0c0121..e0559ac 100644 --- a/src/frontend/app/components/layout/AppShell.tsx +++ b/src/frontend/app/components/layout/AppShell.tsx @@ -2,6 +2,7 @@ import React, { useState } from "react"; import { Outlet } from "react-router"; import { PageTitleProvider, usePageTitleContext } from "~/contexts/PageTitleContext"; import NavBar from "../NavBar"; +import { ThemeColorManager } from "../ThemeColorManager"; import "./AppShell.css"; import { Drawer } from "./Drawer"; import { Header } from "./Header"; @@ -12,6 +13,7 @@ const AppShellContent: React.FC = () => { return ( <div className="app-shell"> + <ThemeColorManager /> <Header className="app-shell__header" title={title} |
