mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
feat(tool): git memo
This commit is contained in:
parent
889d594992
commit
5cd9997a84
11 changed files with 504 additions and 18 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue