Working on dynamic theme

This commit is contained in:
2023-05-02 23:19:18 +02:00
parent c05d1a9e6e
commit 6640b319f0
10 changed files with 122 additions and 24 deletions

View File

@@ -8,7 +8,7 @@ export const appRouter = router({
}))
.query(({ input }) => {
return {
greeting: `Hello ${input.name ?? 'world'}!`,
greeting: `Hello ${input.name ?? 'World'}!`,
}
}),
})