wrap tool and testCases, then updated index file

This commit is contained in:
Chesterkxng
2024-07-04 09:17:52 +00:00
parent 0282706370
commit 37c520d9ca
5 changed files with 136 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('list', {
name: 'Wrap',
path: 'wrap',
// image,
description: '',
shortDescription: '',
keywords: ['wrap'],
component: lazy(() => import('./index'))
});