Files
omni-tools/src/pages/json/prettify/meta.ts
2024-06-29 10:58:45 +03:00

13 lines
328 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('json', {
name: 'Prettify',
path: 'prettify',
// image,
description: '',
shortDescription: '',
keywords: ['prettify'],
component: lazy(() => import('./index'))
});