Greums's picture
first alpha version
1982de5
raw
history blame
278 Bytes
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>
)
}