mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-23 07:14:21 +00:00
20 lines
531 B
TypeScript
20 lines
531 B
TypeScript
import * as React from 'react';
|
|
import {Bluelib, Heading, LayoutThreeCol} from "@steffo/bluelib-react";
|
|
import {Router} from "./routes/Router";
|
|
|
|
function App() {
|
|
return (
|
|
<Bluelib theme={"sophon"}>
|
|
<LayoutThreeCol>
|
|
<LayoutThreeCol.Center>
|
|
<Heading level={1}>
|
|
Sophon
|
|
</Heading>
|
|
<Router/>
|
|
</LayoutThreeCol.Center>
|
|
</LayoutThreeCol>
|
|
</Bluelib>
|
|
);
|
|
}
|
|
|
|
export default App;
|