mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 22:10:24 +00:00
9 lines
276 B
TypeScript
9 lines
276 B
TypeScript
import { ReactNode } from 'react'
|
|
|
|
const ResponsiveGrid = ({ children }:{ children: ReactNode }):JSX.Element => {
|
|
return <div className='grid gap-x-4 grid-rows-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 mt-10 -mb-10'>
|
|
{children}
|
|
</div>
|
|
}
|
|
|
|
export default ResponsiveGrid |