1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-24 07:39:36 +02:00

feat(new-tool): math evaluator

This commit is contained in:
Corentin Thomasset 2022-06-02 00:10:03 +02:00
parent 8fb0e6af9c
commit 433ba2a3e5
No known key found for this signature in database
GPG key ID: DBD997E935996158
3 changed files with 83 additions and 0 deletions

View file

@ -1,6 +1,7 @@
import { LockOpen } from '@vicons/tabler';
import type { ToolCategory } from './tool';
import { tool as mathEvaluator } from './math-evaluator';
import { tool as jsonViewer } from './json-viewer';
import { tool as htmlEntities } from './html-entities';
import { tool as urlParser } from './url-parser';
@ -53,6 +54,11 @@ export const toolsByCategory: ToolCategory[] = [
icon: LockOpen,
components: [gitMemo, randomPortGenerator, crontabGenerator, jsonViewer],
},
{
name: 'Math',
icon: LockOpen,
components: [mathEvaluator],
},
{
name: 'Text',
icon: LockOpen,