mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
audio upload buttin
This commit is contained in:
parent
d676ff88e4
commit
5e9b6e1819
10 changed files with 89 additions and 6 deletions
14
src/components/editors/AudioEditor/index.tsx
Normal file
14
src/components/editors/AudioEditor/index.tsx
Normal file
|
@ -0,0 +1,14 @@
|
|||
import React, { FC, useCallback } from 'react';
|
||||
import { INode } from '~/redux/types';
|
||||
import path from 'ramda/es/path';
|
||||
|
||||
interface IProps {
|
||||
data: INode;
|
||||
setData: (val: INode) => void;
|
||||
}
|
||||
|
||||
const AudioEditor: FC<IProps> = ({ data, setData }) => {
|
||||
return <div>something!</div>;
|
||||
};
|
||||
|
||||
export { AudioEditor };
|
Loading…
Add table
Add a link
Reference in a new issue