diff --git a/src/components/App/App.tsx b/src/components/App/App.tsx index 240cf36..2af7018 100644 --- a/src/components/App/App.tsx +++ b/src/components/App/App.tsx @@ -42,6 +42,28 @@ export type DocInnerProps = { export type {DocLeadingPageData, DocPageData}; +type RuntimeProps = { + theme: Theme; +}; + +function Runtime(props: RuntimeProps) { + const {theme} = props; + + return ( + <> + + + + + ); +} + function Page(props: DocInnerProps) { const {data, ...pageProps} = props; @@ -115,6 +137,7 @@ export function App(props: DocInnerProps): ReactElement { return (
+
); } @@ -160,15 +183,7 @@ export function App(props: DocInnerProps): ReactElement { } /> - - - + ); }