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);
|