mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-22 14:54:22 +00:00
🔧 Move the layout inside the app
This commit is contained in:
parent
875876b3a7
commit
637ef3a92e
1 changed files with 71 additions and 71 deletions
|
@ -37,6 +37,9 @@ import {ThemeProvider} from "./contexts/theme"
|
|||
function App({..._}: RouteComponentProps) {
|
||||
return React.useMemo(
|
||||
() => <>
|
||||
<LayoutThreeCol>
|
||||
<LayoutThreeCol.Center>
|
||||
<ThemedTitle level={1}/>
|
||||
<ErrorCatcherBox>
|
||||
<Chapter>
|
||||
<SophonDescriptionBox/>
|
||||
|
@ -101,6 +104,9 @@ function App({..._}: RouteComponentProps) {
|
|||
/>
|
||||
</InstanceProvider>
|
||||
</ErrorCatcherBox>
|
||||
<SophonFooter/>
|
||||
</LayoutThreeCol.Center>
|
||||
</LayoutThreeCol>
|
||||
</>,
|
||||
[],
|
||||
)
|
||||
|
@ -111,15 +117,9 @@ export default function AppWrapper() {
|
|||
return (
|
||||
<ThemeProvider>
|
||||
<ThemedBluelib>
|
||||
<LayoutThreeCol>
|
||||
<LayoutThreeCol.Center>
|
||||
<ThemedTitle level={1}/>
|
||||
<Reach.Router>
|
||||
<App default/>
|
||||
</Reach.Router>
|
||||
<SophonFooter/>
|
||||
</LayoutThreeCol.Center>
|
||||
</LayoutThreeCol>
|
||||
</ThemedBluelib>
|
||||
</ThemeProvider>
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue