feat(SW-1388): add hero image and heading to startpage * feat(SW-1388): add hero image and heading to startpage * fix(SW-1388): spacing variables for padding * fix(SW-1388): use inset value instead Approved-by: Erik Tiekstra
8 lines
232 B
TypeScript
8 lines
232 B
TypeScript
import styles from "./pageContainer.module.css"
|
|
|
|
import type { PropsWithChildren } from "react"
|
|
|
|
export default function PageContainer({ children }: PropsWithChildren) {
|
|
return <div className={styles.container}>{children}</div>
|
|
}
|