We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e794a00 commit 0c12953Copy full SHA for 0c12953
src/server/app.router.ts
@@ -15,12 +15,12 @@ import {
15
} from "./note.schema";
16
17
const t = initTRPC.create({
18
- transformer: superjson
+ transformer: superjson,
19
});
20
21
export const appRouter = t.router({
22
getHello: t.procedure.query((req) => {
23
- return { message: "Welcome to Full-Stack tRPC CRUD App" };
+ return { message: "Welcome to Full-Stack tRPC CRUD App with Next.js" };
24
}),
25
createNote: t.procedure
26
.input(createNoteSchema)
tailwind.config.js
@@ -30,4 +30,4 @@ module.exports = {
30
},
31
32
plugins: [],
33
-};;
+}
0 commit comments