added tooling (eslint, typescript and prettier)

This commit is contained in:
Carl-Gerhard Lindesvärd
2023-11-02 12:14:37 +01:00
parent 575b3c23bf
commit 493e1b7650
82 changed files with 1890 additions and 1363 deletions

View File

@@ -1,5 +1,6 @@
import { z } from "zod";
import { useQueryParams } from "./useQueryParams";
import { z } from 'zod';
import { useQueryParams } from './useQueryParams';
export function useOrganizationParams() {
return useQueryParams(
@@ -8,6 +9,6 @@ export function useOrganizationParams() {
project: z.string(),
dashboard: z.string(),
profileId: z.string().optional(),
}),
})
);
}
}