rotate tool, testCases then updated index file

This commit is contained in:
Chesterkxng
2024-07-12 23:50:15 +00:00
parent 626092508e
commit b3c5e5ed29
5 changed files with 137 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: 'Rotate',
path: 'rotate',
// image,
description: '',
shortDescription: '',
keywords: ['rotate'],
component: lazy(() => import('./index'))
});