feat(navigation): add controller + tRPC router + header global + barrel

This commit is contained in:
2026-05-05 08:34:37 +02:00
parent 19f32ec94d
commit 014dbc81ec
7 changed files with 78 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
type TrpcClient = {
navigation: {
header: { queryOptions: () => unknown };
};
};
export function headerQuery(client: TrpcClient) {
return client.navigation.header.queryOptions();
}