aboutsummaryrefslogtreecommitdiff
path: root/src/tools/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/index.ts')
-rw-r--r--src/tools/index.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/index.ts b/src/tools/index.ts
index a41a0ff..5244f6c 100644
--- a/src/tools/index.ts
+++ b/src/tools/index.ts
@@ -6,12 +6,13 @@ import { tool as hashText } from './hash-text';
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';
export const toolsByCategory: ToolCategory[] = [
{
name: 'Crypto',
icon: LockOpen,
- components: [tokenGenerator, hashText, uuidGenerator, cypher],
+ components: [tokenGenerator, hashText, uuidGenerator, cypher, bip39],
},
{
name: 'Converter',