feat(tool): base converter

This commit is contained in:
Corentin Thomasset 2022-04-12 14:27:52 +02:00
parent 5cd9997a84
commit 034c686896
No known key found for this signature in database
GPG key ID: 3103EB5E79496F9C
5 changed files with 118 additions and 1 deletions

View file

@ -9,6 +9,7 @@ import { tool as cypher } from './encryption';
import { tool as bip39 } from './bip39-generator';
import { tool as dateTimeConverter } from './date-time-converter';
import { tool as gitMemo } from './git-memo';
import { tool as baseConverter } from './integer-base-converter';
export const toolsByCategory: ToolCategory[] = [
{
@ -19,7 +20,7 @@ export const toolsByCategory: ToolCategory[] = [
{
name: 'Converter',
icon: LockOpen,
components: [dateTimeConverter, romanNumeralConverter],
components: [dateTimeConverter, baseConverter, romanNumeralConverter],
},
{
name: 'Development',