1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-21 04:19:37 +02:00

Theme changing. Simple routing

This commit is contained in:
unknown 2021-05-07 18:30:06 +02:00
parent 573814ddac
commit 765418d3d2
19 changed files with 378 additions and 59 deletions

View file

@ -0,0 +1,9 @@
import classes from './Layout.module.css';
export const Container = (props: any): JSX.Element => {
return (
<div className={classes.Container}>
{props.children}
</div>
)
}