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

13 lines
272 B
TypeScript
Raw Normal View History

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