export const TodoWrapper = ({ data, handleRemove }) => { return (
My tasks:
{data.length > 0 ? :
No tasks to do.Yaay!
}
) }