1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-28 14:16:41 +07:00

added dropzones for comments and node editors

This commit is contained in:
Fedor Katurov 2021-10-05 11:31:21 +07:00
parent fb8ad315c0
commit f10a1fa2d8
23 changed files with 247 additions and 41 deletions

View file

@ -1,9 +1,10 @@
import React, { FC } from 'react';
import { Filler } from '~/components/containers/Filler';
import { IEditorComponentProps } from '~/redux/node/types';
import styles from './styles.module.scss';
type IProps = IEditorComponentProps & {};
const EditorFiller: FC<IProps> = () => <Filler />;
const EditorFiller: FC<IProps> = () => <Filler className={styles.filler} />;
export { EditorFiller };