starter-blog/components/SectionContainer.js
2022-01-31 23:58:10 +08:00

4 lines
154 B
JavaScript

export default function SectionContainer({ children }) {
return <div className="mx-auto max-w-3xl px-4 sm:px-6 xl:max-w-5xl xl:px-0">{children}</div>
}