feat(react): port sort child notes

This commit is contained in:
Elian Doran
2025-08-03 21:18:18 +03:00
parent 164feaa3ec
commit bca397e3e4
13 changed files with 190 additions and 121 deletions

View File

@@ -0,0 +1,23 @@
interface FormCheckboxProps {
name: string;
label: string;
currentValue?: boolean;
onChange(newValue: boolean): void;
}
export default function FormCheckbox({ name, label, currentValue, onChange }: FormCheckboxProps) {
return (
<div className="form-check">
<label className="form-check-label tn-checkbox">
<input
className="form-check-input"
type="checkbox"
name={name}
checked={currentValue || false}
value="1"
onChange={e => onChange((e.target as HTMLInputElement).checked)} />
{label}
</label>
</div>
);
}