starter-blog/components/SectionContainer.js

4 lines
154 B
JavaScript
Raw Normal View History

2021-01-09 10:50:45 +01:00
export default function SectionContainer({ children }) {
2022-01-31 16:58:10 +01: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 10:50:45 +01:00
}