feat(react/widgets): set up form group

This commit is contained in:
Elian Doran
2025-08-04 20:34:47 +03:00
parent 83fb62d4df
commit 18eb704b81
3 changed files with 23 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
import { ComponentChildren } from "preact";
interface FormGroupProps {
label: string;
children: ComponentChildren;
}
export default function FormGroup({ label, children }: FormGroupProps) {
return (
<div className="form-group">
<label style={{ width: "100%" }}>
{label}
{children}
</label>
</div>
);
}