added description

This commit is contained in:
Kasper Juul Hermansen 2022-08-29 07:15:12 +02:00
parent e1aefc435a
commit e671495381
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23

View File

@ -89,6 +89,13 @@ const TodoDetails: FC<TodoDetailsProps> = ({ todo }) => {
</h4>
</>
)}
{
todo.description && (
<div>
{todo.description}
</div>
)
}
</div>
</div>
);