initial commit

This commit is contained in:
2025-10-21 11:06:46 -03:00
commit d00e0cd676
33 changed files with 1324 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { defineSchema, defineTable } from "convex/server";
import { v } from "convex/values";
export default defineSchema({
todos: defineTable({
text: v.string(),
completed: v.boolean(),
}),
});