implemented custom Field component

This commit is contained in:
Oliver Bryan
2026-01-01 03:01:57 +00:00
parent 31fc0d41e6
commit 866796b5de
5 changed files with 125 additions and 306 deletions

View File

@@ -3,6 +3,6 @@ export * as organisation from "./organisation";
export * as project from "./project";
export type ServerQueryInput = {
onSuccess?: (data: unknown, res: Response) => void;
onError?: (error: unknown) => void;
onSuccess?: (data: any, res: Response) => void;
onError?: (error: string) => void;
};