1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00
vault-frontend/src/components/editors/EditorPanel/index.tsx
2019-08-08 14:24:58 +07:00

12 lines
283 B
TypeScript

import React, { FC } from 'react';
import * as styles from './styles.scss';
import { INode } from '~/redux/types';
interface IProps {
data: INode;
setData: (val: INode) => void;
}
const EditorPanel: FC<IProps> = () => <div className={styles.panel} />;
export { EditorPanel };