feat(tool): date-time converter

This commit is contained in:
Corentin Thomasset 2022-04-12 01:43:49 +02:00
parent 11d8110226
commit 2d9cb209b3
No known key found for this signature in database
GPG key ID: DBD997E935996158
6 changed files with 128 additions and 1 deletions

View file

@ -7,6 +7,7 @@ import { tool as uuidGenerator } from './uuid-generator';
import { tool as romanNumeralConverter } from './roman-numeral-converter';
import { tool as cypher } from './encryption';
import { tool as bip39 } from './bip39-generator';
import { tool as dateTimeConverter } from './date-time-converter';
export const toolsByCategory: ToolCategory[] = [
{
@ -17,7 +18,7 @@ export const toolsByCategory: ToolCategory[] = [
{
name: 'Converter',
icon: LockOpen,
components: [romanNumeralConverter],
components: [dateTimeConverter, romanNumeralConverter],
},
];