File size: 267 Bytes
1813a37
 
 
 
 
 
 
 
 
 
 
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>
    )
}