13 lines
333 B
TypeScript
Raw Normal View History

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'))
});