Files
omni-tools/src/pages/string/to-morse/meta.ts

13 lines
317 B
TypeScript
Raw Normal View History

2024-06-25 02:07:57 +01:00
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('string', {
name: 'String To morse',
path: 'to-morse',
// image,
description: '',
keywords: ['to', 'morse'],
component: lazy(() => import('./index'))
});