From 0e8b7e50f94a97ded04e560ea4640bfae3ce9e99 Mon Sep 17 00:00:00 2001 From: Lilith Date: Sat, 28 Feb 2026 00:09:27 -0800 Subject: [PATCH] =?UTF-8?q?ui(content-strategy):=20=F0=9F=92=84=20Update?= =?UTF-8?q?=20root=20layout=20in=20App.tsx=20to=20implement=20content=20st?= =?UTF-8?q?rategy=20routing,=20feature=20flags,=20and=20dynamic=20UI=20com?= =?UTF-8?q?ponents?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .../content-strategy/frontend-dev/src/App.tsx | 24 +++++++++++-------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/features/content-strategy/frontend-dev/src/App.tsx b/features/content-strategy/frontend-dev/src/App.tsx index 0e7b9fe9c..85b718464 100644 --- a/features/content-strategy/frontend-dev/src/App.tsx +++ b/features/content-strategy/frontend-dev/src/App.tsx @@ -22,6 +22,10 @@ import { FileHealthPage } from './pages/FileHealthPage'; logVersionBanner({ primaryColor: '#00ffff', secondaryColor: '#ff00ff' }); +function withErrorBoundary(page: JSX.Element): JSX.Element { + return {page}; +} + export function App(): JSX.Element { return ( @@ -38,16 +42,16 @@ export function App(): JSX.Element { > - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> + )} /> + )} /> + )} /> + )} /> + )} /> + )} /> + )} /> + )} /> + )} /> + )} />