File size: 278 Bytes
1982de5
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import type {ComponentChildren} from "preact";
import style from "./style.module.scss"

export function FormGroup(props: {

    children: ComponentChildren,

}) {
    return (
        <div className={style.formGroup}>

            {props.children}

        </div>
    )
}