blob: 60676ea57bd6cd446ca6ead4f5bcdf4ecc7f1af3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import styles from "./screen-container.module.css"
interface Props {
children: React.ReactNode
}
const ScreenContainer = ({ children }: Props) => {
return (
<div className={styles.screen}>
{children}
</div>
)
}
export default ScreenContainer
|