2022-04-04 00:24:45 +02:00

6 lines
175 B
TypeScript

import type { ToolCategory } from './Tool';
export const toolsByCategory: ToolCategory[] = [];
export const tools = toolsByCategory.flatMap(({ components }) => components);