UNPKG

storybook-addon-performance

Version:

A storybook addon to help better understand and debug performance for React components

12 lines (10 loc) 185 B
// src/util/get-result-map.ts function getResultMap(list) { return list.reduce((acc, item) => { acc[item.taskName] = item; return acc; }, {}); } export { getResultMap };