tool setup

This commit is contained in:
BlightG
2024-06-29 10:58:45 +03:00
parent ac63c0e357
commit 50f6a94dda
4 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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'))
});