added description

This commit is contained in:
2022-08-29 07:15:12 +02:00
parent e1aefc435a
commit e671495381

View File

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