mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 11:39:36 +02:00
10 lines
270 B
TypeScript
10 lines
270 B
TypeScript
import { ReactNode } from 'react';
|
|
import classes from './Layout.module.css';
|
|
|
|
interface ComponentProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const Container = (props: ComponentProps): JSX.Element => {
|
|
return <div className={classes.Container}>{props.children}</div>;
|
|
};
|