1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-12-23 15:24:21 +00:00
sophon/frontend/src/App.tsx

22 lines
644 B
TypeScript
Raw Normal View History

import * as React from 'react';
2021-09-21 14:22:50 +00:00
import {LayoutThreeCol} from "@steffo/bluelib-react";
2021-09-14 21:34:18 +00:00
import {Router} from "./routes/Router";
import {LookAndFeel} from "./components/theme/LookAndFeel";
export default function App() {
return (
<LookAndFeel>
<LookAndFeel.Bluelib>
<LookAndFeel.PageTitle/>
<LayoutThreeCol>
<LayoutThreeCol.Center>
<LookAndFeel.Heading level={1}/>
<Router/>
</LayoutThreeCol.Center>
</LayoutThreeCol>
</LookAndFeel.Bluelib>
</LookAndFeel>
);
}