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

11 lines
270 B
TypeScript
Raw Normal View History

import { ReactNode } from 'react';
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: ReactNode;
2021-05-25 11:44:11 +02:00
}
export const Container = (props: ComponentProps): JSX.Element => {
return <div className={classes.Container}>{props.children}</div>;
};