mirror of
https://github.com/pawelmalak/snippet-box.git
synced 2025-12-21 13:23:05 +01:00
12 lines
234 B
TypeScript
12 lines
234 B
TypeScript
interface Props {
|
|
children: JSX.Element | JSX.Element[];
|
|
}
|
|
|
|
export const Layout = (props: Props): JSX.Element => {
|
|
return (
|
|
<div className='container'>
|
|
<div className='row pt-4'>{props.children}</div>
|
|
</div>
|
|
);
|
|
};
|