jonbio/components/SectionContainer.js

4 lines
154 B
JavaScript
Raw Normal View History

2021-01-09 17:50:45 +08:00
export default function SectionContainer({ children }) {
2022-01-31 23:58:10 +08:00
return <div className="mx-auto max-w-3xl px-4 sm:px-6 xl:max-w-5xl xl:px-0">{children}</div>
2021-01-09 17:50:45 +08:00
}