feat(tool): roman-arabic numbers converter

This commit is contained in:
Corentin Thomasset 2022-04-04 23:33:39 +02:00
parent 3ae61147a9
commit 655019cf23
No known key found for this signature in database
GPG key ID: DBD997E935996158
5 changed files with 154 additions and 0 deletions

View file

@ -4,6 +4,7 @@ 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';
import { tool as romanNumeralConverter } from './roman-numeral-converter';
export const toolsByCategory: ToolCategory[] = [
{
@ -11,6 +12,11 @@ export const toolsByCategory: ToolCategory[] = [
icon: LockOpen,
components: [tokenGenerator, hashText, uuidGenerator],
},
{
name: 'Converter',
icon: LockOpen,
components: [romanNumeralConverter],
},
];
export const tools = toolsByCategory.flatMap(({ components }) => components);