mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-10 14:46:54 +08:00
13 lines
260 B
JavaScript
13 lines
260 B
JavaScript
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
|