1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

logindialog initial

This commit is contained in:
muerwre 2019-08-02 18:13:23 +07:00
parent 9220f09fe5
commit 6066c91060
5 changed files with 56 additions and 4 deletions

View file

@ -1,6 +1,7 @@
import { ValueOf } from "~/redux/types";
import { HorizontalExample } from "~/containers/examples/HorizontalExample";
import { ExampleDialog } from "~/containers/dialogs/ExampleDialog";
import { LoginDialog } from "~/containers/dialogs/LoginDialog";
export const MODAL_ACTIONS = {
SET_SHOWN: "MODAL.SET_SHOWN",
@ -9,11 +10,13 @@ export const MODAL_ACTIONS = {
};
export const DIALOGS = {
TEST: "TEST"
TEST: "TEST",
LOGIN: "LOGIN"
};
export const DIALOG_CONTENT = {
[DIALOGS.TEST]: ExampleDialog
[DIALOGS.TEST]: ExampleDialog,
[DIALOGS.LOGIN]: LoginDialog
};
export interface IDialogProps {