1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

#58 using formik at node submit form

This commit is contained in:
Fedor Katurov 2021-03-26 17:52:24 +07:00
parent 4b542e0291
commit b871cc2042
17 changed files with 230 additions and 423 deletions

View file

@ -1,12 +1,7 @@
import { IComment, INode } from '~/redux/types';
import { INodeState } from '~/redux/node/reducer';
export interface IEditorComponentProps {
data: INode;
setData: (data: INode) => void;
temp: string[];
setTemp: (val: string[]) => void;
}
export interface IEditorComponentProps {}
export type GetNodeDiffRequest = {
start?: string;
@ -83,12 +78,7 @@ export type ApiLockCommentRequest = {
export type ApiLockcommentResult = {
deleted_at: string;
};
export type NodeEditorProps = {
data: INode;
setData: (val: INode) => void;
temp: string[];
setTemp: (val: string[]) => void;
};
export type NodeEditorProps = {};
export type INodeRelated = {
albums: Record<string, INode[]>;