checkbox-controlled
123456789101112131415161718
import { useState } from "react";import "./style.css";export default function Example() {const [checked, setChecked] = useState(true);return (<label className="label">className="checkbox"/>I have read and agree to the terms and conditions</label>);}import { useState } from "react";import "./style.css";export default function Example() {const [checked, setChecked] = useState(true);return (<label className="label">className="checkbox"/>I have read and agree to the terms and conditions</label>);}