Ivan Li
3932a2b612
Some checks failed
🚀 Build and deploy by ftp / 🎉 Deploy (push) Failing after 8m21s
14 lines
272 B
TypeScript
14 lines
272 B
TypeScript
import { ReactNode } from 'react';
|
|
|
|
interface Props {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export default function SectionContainer({ children }: Props) {
|
|
return (
|
|
<section className="mx-auto max-w-3xl px-4 sm:px-6 xl:max-w-5xl xl:px-0">
|
|
{children}
|
|
</section>
|
|
);
|
|
}
|