2025-03-25 16:11:17 +00:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('json', {
|
|
|
|
|
path: 'json-to-xml',
|
2025-07-12 23:02:35 -07:00
|
|
|
icon: 'material-symbols:code',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-07-12 23:02:35 -07:00
|
|
|
keywords: ['json', 'xml', 'convert', 'transform'],
|
|
|
|
|
component: lazy(() => import('./index')),
|
|
|
|
|
i18n: {
|
2025-07-13 11:25:05 +01:00
|
|
|
name: 'json:jsonToXml.title',
|
|
|
|
|
description: 'json:jsonToXml.description',
|
|
|
|
|
shortDescription: 'json:jsonToXml.shortDescription'
|
2025-07-12 23:02:35 -07:00
|
|
|
}
|
2025-03-25 16:11:17 +00:00
|
|
|
});
|