mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
added editor panel
This commit is contained in:
parent
ee17b72a7f
commit
bfc779745a
6 changed files with 45 additions and 12 deletions
15
src/components/editors/EditorPanel/index.tsx
Normal file
15
src/components/editors/EditorPanel/index.tsx
Normal file
|
@ -0,0 +1,15 @@
|
|||
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 };
|
Loading…
Add table
Add a link
Reference in a new issue