mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +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 EditorDialogVideo: FC<IProps> = props => <EditorDialog type={NODE_TYPES.VIDEO} {...props} />;
|
|
|
|
export { EditorDialogVideo };
|