mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-30 23:26:40 +07:00
10 lines
366 B
TypeScript
10 lines
366 B
TypeScript
import React, { FC } from 'react';
|
|
import { EditorDialog } from '~/containers/dialogs/EditorDialog';
|
|
import { IDialogProps } from '~/redux/types';
|
|
import { NODE_TYPES } from '~/redux/node/constants';
|
|
|
|
type IProps = IDialogProps & {};
|
|
|
|
const EditorDialogImage: FC<IProps> = props => <EditorDialog type={NODE_TYPES.IMAGE} {...props} />;
|
|
|
|
export { EditorDialogImage };
|