@im-ian/react-survey
Version:
2018~2019년에 제작했던 React 설문 모듈입니다. 아카이브 용도로 업로드 되었습니다.
11 lines (9 loc) • 317 B
text/typescript
import { v4 as uniqid } from "uuid";
import { BlockTypes, Blocks } from "../@types/block";
import { getNameFromBlockType } from "../helpers/converter";
export const blockList = Object.values(Blocks).map((value, index) => ({
index,
key: uniqid(),
label: getNameFromBlockType(value as BlockTypes),
value,
}));