Initial setup of pages. Tool definition

This commit is contained in:
Luís Jesus
2025-03-25 16:11:17 +00:00
parent 243c7d45a2
commit fdb7d5d704
4 changed files with 143 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('json', {
name: 'Convert JSON to XML',
path: 'json-to-xml',
icon: 'mdi-light:xml',
description: 'Convert JSON files to XML format with customizable options.',
shortDescription: 'Convert JSON data to XML format',
keywords: ['json', 'xml', 'convert', 'transform', 'parse'],
component: lazy(() => import('./index'))
});