wishlist-client/components/layout/home/HomeLayout.tsx

24 lines
593 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 (
2022-04-25 22:32:24 +02:00
<div className="bg-pink-50 min-h-screen">
<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>
2022-04-24 23:12:11 +02:00
</div>
)
}
export default HomeLayout