should I share TRPC client in a internal package?
I have 2 clients and 1 server in one monorepo. these 2 clients are consuming the same api/using the same trpc.
both are doing the same, having a file just to crate the TRPC on the app by following this code:
is right to share it in a internal package?
both are doing the same, having a file just to crate the TRPC on the app by following this code:
export const trpc = createTRPCReact<AppRouter>();is right to share it in a internal package?