feat(new-tool): mac address lookup

This commit is contained in:
Corentin Thomasset
2023-04-07 00:18:06 +02:00
committed by Corentin THOMASSET
parent 1060652590
commit 076df11024
7 changed files with 209 additions and 9 deletions

View File

@@ -46,6 +46,7 @@ import type { ToolCategory } from './tools.types';
import { tool as urlEncoder } from './url-encoder';
import { tool as urlParser } from './url-parser';
import { tool as uuidGenerator } from './uuid-generator';
import { tool as macAddressLookup } from './mac-address-lookup';
export const toolsByCategory: ToolCategory[] = [
{
@@ -102,7 +103,7 @@ export const toolsByCategory: ToolCategory[] = [
},
{
name: 'Network',
components: [ipv4SubnetCalculator],
components: [ipv4SubnetCalculator, macAddressLookup],
},
{
name: 'Math',