15 lines
270 B
TypeScript
15 lines
270 B
TypeScript
import React from 'react'
|
|
|
|
import './index.scss'
|
|
|
|
interface Props {}
|
|
|
|
const GridRepCollection: React.FC<Props> = ({ children }) => {
|
|
return (
|
|
<div className="GridRepCollection">
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default GridRepCollection
|