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