Files
omni-tools/src/pages/string/reverse/meta.ts
2024-07-11 00:01:59 +00:00

13 lines
327 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',
// image,
description: '',
shortDescription: '',
keywords: ['reverse'],
component: lazy(() => import('./index'))
});