import {getTodo, updateTodo} from './actions'; export async function TodoDetail({id}: {id: number}) { let todo = await getTodo(id); if (!todo) { return
Todo not found