starter-blog/components/SectionContainer.js
2021-01-12 23:35:36 +08:00

3 lines
154 B
JavaScript

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