mirror of
https://github.com/MaggieAppleton/digital-gardeners.git
synced 2024-11-21 17:09:45 +01:00
8 lines
183 B
JavaScript
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>
|
|
);
|
|
}
|