extract substring tool, testCases then updated index file

This commit is contained in:
Chesterkxng
2024-07-10 16:17:56 +00:00
parent b309921d89
commit eda771f38c
5 changed files with 118 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('string', {
name: 'Extract substring',
path: 'extract-substring',
// image,
description: '',
shortDescription: '',
keywords: ['extract', 'substring'],
component: lazy(() => import('./index'))
});