mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
feat(tool): lorem ipsum generator
This commit is contained in:
parent
1134e0b822
commit
5dcb2ed95c
4 changed files with 286 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue