client/components/layout/home/HomeLayout.tsx

22 lines
520 B
TypeScript
Raw Normal View History

2022-04-24 23:12:11 +02:00
import { FC, ReactElement } from 'react'
import { inspect } from 'util'
import styles from './HomeLayout.module.scss'
interface HomeLayoutProps {
page: string
}
const HomeLayout: FC<HomeLayoutProps> = (props) => {
return (
<div className={styles.root + ' space-x-6 pt-14'}>
<h1 className="text-2xl space-x-2">
<span>Wishes</span>
<span>/</span>
<span>{props.page}</span>
</h1>
<main className="pt-20">{props.children}</main>
</div>
)
}
export default HomeLayout