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

22 lines
562 B
TypeScript
Raw Normal View History

import * as React from 'react';
import {Bluelib, Box, Heading, LayoutThreeCol} from "@steffo/bluelib-react";
function App() {
return (
<Bluelib theme={"sophon"}>
<LayoutThreeCol>
<LayoutThreeCol.Center>
<Heading level={1}>
Sophon
</Heading>
<Box>
Welcome to Sophon!
</Box>
</LayoutThreeCol.Center>
</LayoutThreeCol>
</Bluelib>
);
}
export default App;