Files
Trilium/apps/client/src/widgets/react/FormGroup.tsx

17 lines
391 B
TypeScript
Raw Normal View History

2025-08-04 20:34:47 +03:00
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>
);
}