03-forms/02-checkbox.tsx
Checkbox
Example
Official Cake20 View example for checkbox.
export const data = {
agreed: false,
};
export default () => (
<label class="flex items-center gap-2">
<input type="checkbox" bind={data.agreed} />
I agree to the terms of service.
</label>
);