import clsx from 'clsx'; import { ReactElement } from 'react'; export const TodoItem = ({ status, label, onChecked }: { status: string; label: string; onChecked:(status: string) => void; }): ReactElement => { return (