feat(tool): uuid v4 generator

This commit is contained in:
Corentin Thomasset 2022-04-04 21:46:35 +02:00
parent 40e9af06cf
commit 3ae61147a9
No known key found for this signature in database
GPG key ID: DBD997E935996158
5 changed files with 83 additions and 4 deletions

View file

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