reverse tool, testCases then updated index file

This commit is contained in:
Chesterkxng
2024-07-11 00:01:59 +00:00
parent c48b2853b6
commit 0064476c51
5 changed files with 108 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: 'Reverse',
path: 'reverse',
// image,
description: '',
shortDescription: '',
keywords: ['reverse'],
component: lazy(() => import('./index'))
});