main
tsx 14 lines 241 Bytes
Raw
1 import './group.css'
2 import type { JSX } from 'react'
3
4 export interface GroupProps {
5 children: any
6 }
7
8 export function Group ({ children }: GroupProps): JSX.Element {
9 return (
10 <div className='Group'>
11 {children}
12 </div>
13 )
14 }