feat(new-tool): url parser

This commit is contained in:
Corentin Thomasset 2022-04-19 00:12:44 +02:00
parent ed9046d3e1
commit 2b38d6f81e
No known key found for this signature in database
GPG key ID: DBD997E935996158
3 changed files with 131 additions and 1 deletions

View file

@ -1,6 +1,7 @@
import { LockOpen } from '@vicons/tabler';
import type { ToolCategory } from './Tool';
import { tool as urlParser } from './url-parser';
import { tool as deviceInformation } from './device-information';
import { tool as bcrypt } from './bcrypt';
import { tool as caseConverter } from './case-converter';
@ -36,7 +37,7 @@ export const toolsByCategory: ToolCategory[] = [
{
name: 'Web',
icon: LockOpen,
components: [urlEncoder, qrCodeGenerator, deviceInformation],
components: [urlEncoder, qrCodeGenerator, urlParser, deviceInformation],
},
{
name: 'Development',