feat(tool): text statistics

This commit is contained in:
Corentin Thomasset 2022-04-14 01:06:06 +02:00
parent 2f49631ff7
commit 0a7c3252e3
No known key found for this signature in database
GPG key ID: DBD997E935996158
7 changed files with 67 additions and 1 deletions

View file

@ -1,6 +1,7 @@
import { LockOpen } from '@vicons/tabler';
import type { ToolCategory } from './Tool';
import { tool as textStatistics } from './text-statistics';
import { tool as tokenGenerator } from './token-generator';
import { tool as hashText } from './hash-text';
import { tool as uuidGenerator } from './uuid-generator';
@ -38,7 +39,7 @@ export const toolsByCategory: ToolCategory[] = [
{
name: 'Text',
icon: LockOpen,
components: [loremIpsumGenerator],
components: [loremIpsumGenerator, textStatistics],
},
];