mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 05:59:34 +02:00
13 lines
333 B
TypeScript
13 lines
333 B
TypeScript
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'))
|
|
}); |