1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-20 03:59:36 +02:00
flame/client/src/components/UI/Layout/Layout.tsx

9 lines
190 B
TypeScript
Raw Normal View History

2021-05-07 18:30:06 +02:00
import classes from './Layout.module.css';
export const Container = (props: any): JSX.Element => {
return (
<div className={classes.Container}>
{props.children}
</div>
)
}