feat(tool): lorem ipsum generator

This commit is contained in:
Corentin Thomasset 2022-04-14 00:00:29 +02:00
parent 1134e0b822
commit 5dcb2ed95c
No known key found for this signature in database
GPG key ID: DBD997E935996158
4 changed files with 286 additions and 0 deletions

View file

@ -12,6 +12,7 @@ import { tool as gitMemo } from './git-memo';
import { tool as baseConverter } from './integer-base-converter';
import { tool as urlEncoder } from './url-encoder';
import { tool as randomPortGenerator } from './random-port-generator';
import { tool as loremIpsumGenerator } from './lorem-ipsum-generator';
export const toolsByCategory: ToolCategory[] = [
{
@ -34,6 +35,11 @@ export const toolsByCategory: ToolCategory[] = [
icon: LockOpen,
components: [gitMemo, randomPortGenerator],
},
{
name: 'Text',
icon: LockOpen,
components: [loremIpsumGenerator],
},
];
export const tools = toolsByCategory.flatMap(({ components }) => components);