Files
web/app/[lang]/(live)/(protected)/my-pages/profile/@profile/layout.tsx
2024-06-19 14:51:00 +02:00

8 lines
198 B
TypeScript

import styles from "./layout.module.css"
export default function ProfileSlotLayout({
children,
}: React.PropsWithChildren) {
return <section className={styles.container}>{children}</section>
}