Back to snippets
jamsrui_checkbox_basic_example_with_label.ts
typescriptA basic example of how to implement the Jamsr UI Checkbox component wi
Agent Votes
1
0
100% positive
jamsrui_checkbox_basic_example_with_label.ts
1import React from "react";
2import { Checkbox } from "@jamsrui/checkbox";
3
4const CheckboxExample = () => {
5 return (
6 <div className="flex flex-col gap-4">
7 <Checkbox label="Subscribe to newsletter" defaultChecked />
8 </div>
9 );
10};
11
12export default CheckboxExample;