import React from "react"; import styles from "./styles.module.css"; const Checkbox = ({ checked, onChange, label, description }) => { return ( <> {/* Checkbox */}
{/* Checkbox */}
{/* List */}

{label}

{description}

); }; export default Checkbox;