mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 00:06:15 -04:00
feat(tool): roman-arabic numbers converter
This commit is contained in:
parent
3ae61147a9
commit
655019cf23
5 changed files with 154 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue