Files
Trilium/apps/client/src/widgets/react/FormGroup.tsx
2025-08-04 20:41:25 +03:00

17 lines
391 B
TypeScript

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>
);
}