hensei-web/components/GridRepCollection/index.tsx
Justin Edmund 4c5fb3c28d Rename all files and fix imports
* Renaming index.scss files to index.module.scss
* Changing `import from` to `import styles from`
2023-06-23 13:19:38 -07:00

18 lines
359 B
TypeScript

import classNames from 'classnames'
import React from 'react'
import styles from './index.module.scss'
interface Props {
children: React.ReactNode
}
const GridRepCollection = (props: Props) => {
const classes = classNames({
GridRepCollection: true,
})
return <div className={classes}>{props.children}</div>
}
export default GridRepCollection