- fix(FN-2578): align TodoView placeholder addToast typing - feat(FN-2578): complete Step 4 — route and preload TodoView - feat(FN-2578): complete Step 3 — wire todos nav entries - feat(FN-2578): complete Step 2 — add todos to view state types - feat(FN-2578): complete Step 1 — add useTodoLists hook and tests
6 lines
181 B
TypeScript
6 lines
181 B
TypeScript
import type { ToastType } from "../hooks/useToast";
|
|
|
|
export function TodoView(_props: { addToast?: (msg: string, type?: ToastType) => void; projectId?: string }) {
|
|
return null;
|
|
}
|