group tool service, testCases then updated index file

This commit is contained in:
Chesterkxng
2024-07-05 18:24:16 +00:00
parent cc16fa5bb0
commit ef0069202d
5 changed files with 216 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: 'Group',
path: 'group',
// image,
description: '',
shortDescription: '',
keywords: ['group'],
component: lazy(() => import('./index'))
});