2021-09-08 16:05:01 +00:00
|
|
|
import * as React from 'react';
|
2021-09-21 14:22:50 +00:00
|
|
|
import {LayoutThreeCol} from "@steffo/bluelib-react";
|
2021-09-30 01:57:15 +00:00
|
|
|
import {SophonInstanceFooter} from "./components/instance/SophonInstanceFooter";
|
|
|
|
import * as Instance from "./components/instance"
|
2021-08-29 20:58:31 +00:00
|
|
|
|
2021-09-29 23:50:45 +00:00
|
|
|
|
|
|
|
export default function App() {
|
2021-09-08 16:05:01 +00:00
|
|
|
return (
|
2021-09-30 01:57:15 +00:00
|
|
|
<Instance.Provider>
|
|
|
|
<Instance.Bluelib>
|
|
|
|
<Instance.PageTitle/>
|
2021-09-29 23:50:45 +00:00
|
|
|
<LayoutThreeCol>
|
|
|
|
<LayoutThreeCol.Center>
|
2021-09-30 01:57:15 +00:00
|
|
|
<Instance.Heading level={1}/>
|
|
|
|
<SophonInstanceFooter/>
|
2021-09-29 23:50:45 +00:00
|
|
|
</LayoutThreeCol.Center>
|
|
|
|
</LayoutThreeCol>
|
2021-09-30 01:57:15 +00:00
|
|
|
</Instance.Bluelib>
|
|
|
|
</Instance.Provider>
|
2021-09-08 16:05:01 +00:00
|
|
|
);
|
2021-08-29 20:58:31 +00:00
|
|
|
}
|