8 lines
198 B
TypeScript
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>
|
|
}
|