albert.lol/components/Body.tsx
2022-05-01 22:50:31 +02:00

11 lines
No EOL
217 B
TypeScript

import styles from 'styles/Home.module.scss'
const Body = ({children}: {children: any}) => {
return(
<div className={styles.bodySection}>
{children}
</div>
)
}
export default Body