toUppercase tool, testCases and updated index file

This commit is contained in:
Chesterkxng
2024-07-10 16:49:55 +00:00
parent eda771f38c
commit ad46b91b3b
5 changed files with 62 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: 'Uppercase',
path: 'uppercase',
// image,
description: '',
shortDescription: '',
keywords: ['uppercase'],
component: lazy(() => import('./index'))
});