More template work & configure backend URL

This commit is contained in:
space-nuko
2023-05-24 23:21:06 -05:00
parent 4ae4e71616
commit 0fedef30c0
17 changed files with 764 additions and 623 deletions

View File

@@ -7,7 +7,7 @@ export type ModalState = Record<string, any>;
export type ModalButton = {
name: string,
variant: "primary" | "secondary",
onClick: (state: ModalData) => void,
onClick: (state: ModalData) => boolean | void,
closeOnClick?: boolean
}
export interface ModalData {