Initial commit. Added some UI components

This commit is contained in:
unknown
2021-09-18 13:10:53 +02:00
commit 77adabc2af
15 changed files with 17307 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
interface Props {
children: JSX.Element | JSX.Element[];
}
export const Layout = (props: Props): JSX.Element => {
return (
<div className='container'>
<div className='row pt-4'>{props.children}</div>
</div>
);
};