Allow configuring environmental variables in panel (#626)
- [ ] Add test cases
This commit is contained in:
@@ -7,7 +7,9 @@ export const selectedAppIdAtom = atom<number | null>(null);
|
||||
export const appsListAtom = atom<App[]>([]);
|
||||
export const appBasePathAtom = atom<string>("");
|
||||
export const versionsListAtom = atom<Version[]>([]);
|
||||
export const previewModeAtom = atom<"preview" | "code" | "problems">("preview");
|
||||
export const previewModeAtom = atom<
|
||||
"preview" | "code" | "problems" | "configure"
|
||||
>("preview");
|
||||
export const selectedVersionIdAtom = atom<string | null>(null);
|
||||
export const appOutputAtom = atom<AppOutput[]>([]);
|
||||
export const appUrlAtom = atom<
|
||||
|
||||
Reference in New Issue
Block a user