Greums's picture
crlf to lf
1813a37
raw
history blame
267 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>
)
}