UNPKG

@im-ian/react-survey

Version:

2018~2019년에 제작했던 React 설문 모듈입니다. 아카이브 용도로 업로드 되었습니다.

10 lines (8 loc) 259 B
import { IBlocks, SelectableOption } from "../../@types/block"; export interface IBlockPresenter { block: IBlocks; onUpdateBlock: (data: IBlocks) => void; onCopyBlock: (data: IBlocks) => void; onRemoveBlock: () => void; list: SelectableOption[]; }