feat(tool): added token generator

This commit is contained in:
Corentin Thomasset 2022-04-04 00:25:29 +02:00
parent 25a8659786
commit 40dec52c84
No known key found for this signature in database
GPG key ID: DBD997E935996158
5 changed files with 189 additions and 46 deletions

View file

@ -1,5 +1,14 @@
import { LockOpen } from '@vicons/tabler';
import type { ToolCategory } from './Tool';
export const toolsByCategory: ToolCategory[] = [];
import { tool as tokenGenerator } from './token-generator';
export const toolsByCategory: ToolCategory[] = [
{
name: 'Crypto',
icon: LockOpen,
components: [tokenGenerator],
},
];
export const tools = toolsByCategory.flatMap(({ components }) => components);