mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
fixed typos
This commit is contained in:
parent
6066c91060
commit
840af25df4
17 changed files with 438 additions and 125 deletions
|
@ -1,22 +1,22 @@
|
|||
import { ValueOf } from "~/redux/types";
|
||||
import { HorizontalExample } from "~/containers/examples/HorizontalExample";
|
||||
import { ExampleDialog } from "~/containers/dialogs/ExampleDialog";
|
||||
import { LoginDialog } from "~/containers/dialogs/LoginDialog";
|
||||
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",
|
||||
SET_DIALOG: "SET_DIALOG",
|
||||
SHOW_DIALOG: "SHOW_DIALOG"
|
||||
SET_SHOWN: 'MODAL.SET_SHOWN',
|
||||
SET_DIALOG: 'SET_DIALOG',
|
||||
SHOW_DIALOG: 'SHOW_DIALOG',
|
||||
};
|
||||
|
||||
export const DIALOGS = {
|
||||
TEST: "TEST",
|
||||
LOGIN: "LOGIN"
|
||||
TEST: 'TEST',
|
||||
LOGIN: 'LOGIN',
|
||||
};
|
||||
|
||||
export const DIALOG_CONTENT = {
|
||||
[DIALOGS.TEST]: ExampleDialog,
|
||||
[DIALOGS.LOGIN]: LoginDialog
|
||||
[DIALOGS.LOGIN]: LoginDialog,
|
||||
};
|
||||
|
||||
export interface IDialogProps {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue