feat(tool): git memo

This commit is contained in:
Corentin Thomasset 2022-04-12 13:24:14 +02:00
parent 889d594992
commit 5cd9997a84
No known key found for this signature in database
GPG key ID: 3103EB5E79496F9C
11 changed files with 504 additions and 18 deletions

View file

@ -8,6 +8,7 @@ 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';
import { tool as gitMemo } from './git-memo';
export const toolsByCategory: ToolCategory[] = [
{
@ -20,6 +21,11 @@ export const toolsByCategory: ToolCategory[] = [
icon: LockOpen,
components: [dateTimeConverter, romanNumeralConverter],
},
{
name: 'Development',
icon: LockOpen,
components: [gitMemo],
},
];
export const tools = toolsByCategory.flatMap(({ components }) => components);