randomize case tool, testCases and updated index file

This commit is contained in:
Chesterkxng
2024-07-10 17:56:56 +00:00
parent 2bb8158aa3
commit c48b2853b6
5 changed files with 79 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: 'Randomize case',
path: 'randomize-case',
// image,
description: '',
shortDescription: '',
keywords: ['randomize', 'case'],
component: lazy(() => import('./index'))
});