core/components/ResponsiveGrid.tsx
SKINMAKER b421d1ab64
chore: apply prettier (#637)
* chore: apply prettier

* chore: edit ready comment

* chore: move ts comment
2023-11-29 22:04:33 +09:00

10 lines
250 B
TypeScript

const ResponsiveGrid: React.FC<React.PropsWithChildren> = ({ children }) => {
return (
<div className='-mb-10 mt-10 grid grid-rows-1 gap-x-4 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4'>
{children}
</div>
)
}
export default ResponsiveGrid