ReactJS
1import React from 'react';
2import styles from './layout.css';
3
4interface ILayoutProps {
5children?: React.ReactNode;
6}
7
8export function Layout({children}: ILayoutProps) {
9return (
10<div className={styles.layout}>
11{children}
12</div>
13);
14}
15