mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
12 lines
283 B
TypeScript
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 };
|