mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-20 03:59:36 +02:00
9 lines
190 B
TypeScript
9 lines
190 B
TypeScript
|
import classes from './Layout.module.css';
|
||
|
|
||
|
export const Container = (props: any): JSX.Element => {
|
||
|
return (
|
||
|
<div className={classes.Container}>
|
||
|
{props.children}
|
||
|
</div>
|
||
|
)
|
||
|
}
|