import {TodoItem} from './TodoItem'; import {getTodos} from './actions'; export async function TodoList({id}: {id: number | undefined}) { let todos = await getTodos(); return ( ); }