vike-stack/pages/todo/TodoList.telefunc.ts

6 lines
178 B
TypeScript

import { todoItems, type TodoItem } from "../../database/todoItems";
export async function onNewTodo({ text }: TodoItem) {
todoItems.push({ text });
return { todoItems };
}