mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-20 14:39:34 +02:00
14 lines
328 B
TypeScript
14 lines
328 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('string', {
|
|
name: 'Reverse',
|
|
path: 'reverse',
|
|
icon: '',
|
|
description: '',
|
|
shortDescription: '',
|
|
keywords: ['reverse'],
|
|
component: lazy(() => import('./index'))
|
|
});
|