digital-gardeners/components/Container.js
Maggie Appleton 6792dabecb initial setup
2021-09-05 15:37:21 +01:00

8 lines
183 B
JavaScript

export default function Container({ children }) {
return (
<div className="container flex flex-col sm:flex-row max-w-full">
{children}
</div>
);
}