svgl/components/grid/index.js

13 lines
260 B
JavaScript
Raw Normal View History

2022-01-17 06:27:55 +08:00
import React from 'react'
import { SimpleGrid } from '@chakra-ui/react'
const Index = ({children}) => {
return (
<SimpleGrid minChildWidth='200px' columns={3} spacing={5}>
{children}
</SimpleGrid>
)
}
export default Index