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:
parent
4b542e0291
commit
b871cc2042
17 changed files with 230 additions and 423 deletions
|
@ -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[]>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue