Use tRPC and react-hook-form

This commit is contained in:
Timothy Armes
2023-09-11 10:28:02 +02:00
parent 7111f000e5
commit ac633670ab
42 changed files with 5490 additions and 587 deletions
+8
View File
@@ -0,0 +1,8 @@
import { addTournament } from "./procedures/addTournament";
import { router } from "./trpc";
export const appRouter = router({
addTournament,
});
export type AppRouter = typeof appRouter;