mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-17 17:56:38 +00:00
13 lines
360 B
TypeScript
13 lines
360 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
// import image from '@assets/text.png';
|
||
|
|
|
||
|
|
export const tool = defineTool('string', {
|
||
|
|
name: 'Create palindrome',
|
||
|
|
path: 'create-palindrome',
|
||
|
|
// image,
|
||
|
|
description: '',
|
||
|
|
shortDescription: '',
|
||
|
|
keywords: ['create', 'palindrome'],
|
||
|
|
component: lazy(() => import('./index'))
|
||
|
|
});
|