feat(new-tool): ipv4 address converter

This commit is contained in:
Corentin Thomasset 2023-04-08 21:10:00 +02:00 committed by Corentin THOMASSET
parent 8930e139b2
commit 28145e0ffe
5 changed files with 152 additions and 1 deletions

View file

@ -1,6 +1,7 @@
import { tool as base64FileConverter } from './base64-file-converter';
import { tool as base64StringConverter } from './base64-string-converter';
import { tool as basicAuthGenerator } from './basic-auth-generator';
import { tool as ipv4AddressConverter } from './ipv4-address-converter';
import { tool as benchmarkBuilder } from './benchmark-builder';
import { tool as userAgentParser } from './user-agent-parser';
import { tool as ipv4SubnetCalculator } from './ipv4-subnet-calculator';
@ -103,7 +104,7 @@ export const toolsByCategory: ToolCategory[] = [
},
{
name: 'Network',
components: [ipv4SubnetCalculator, macAddressLookup],
components: [ipv4SubnetCalculator, ipv4AddressConverter, macAddressLookup],
},
{
name: 'Math',