quote tool, testCases and updated indexfile

This commit is contained in:
Chesterkxng
2024-07-12 01:15:17 +00:00
parent a83af6a82e
commit c034b7331f
4 changed files with 143 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: 'Quote',
path: 'quote',
// image,
description: '',
shortDescription: '',
keywords: ['quote'],
component: lazy(() => import('./index'))
});