it-tools/src/tools/index.ts

6 lines
175 B
TypeScript
Raw Normal View History

2022-04-04 00:24:45 +02:00
import type { ToolCategory } from './Tool';
2022-03-31 00:33:29 +02:00
2022-04-04 00:24:45 +02:00
export const toolsByCategory: ToolCategory[] = [];
export const tools = toolsByCategory.flatMap(({ components }) => components);