feat(tool): text hash

This commit is contained in:
Corentin Thomasset 2022-04-04 00:25:53 +02:00
parent 40dec52c84
commit 0f3b7445ad
No known key found for this signature in database
GPG key ID: DBD997E935996158
3 changed files with 85 additions and 1 deletions

View file

@ -2,12 +2,13 @@ import { LockOpen } from '@vicons/tabler';
import type { ToolCategory } from './Tool';
import { tool as tokenGenerator } from './token-generator';
import { tool as hashText } from './hash-text';
export const toolsByCategory: ToolCategory[] = [
{
name: 'Crypto',
icon: LockOpen,
components: [tokenGenerator],
components: [tokenGenerator, hashText],
},
];