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

22 lines
689 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";
import {SophonInstanceFooter} from "./components/instance/SophonInstanceFooter";
import * as Instance from "./components/instance"
export default function App() {
return (
<Instance.Provider>
<Instance.Bluelib>
<Instance.PageTitle/>
<LayoutThreeCol>
<LayoutThreeCol.Center>
<Instance.Heading level={1}/>
<SophonInstanceFooter/>
</LayoutThreeCol.Center>
</LayoutThreeCol>
</Instance.Bluelib>
</Instance.Provider>
);
}