Files
omni-tools/src/pages/tools/list/truncate/meta.ts

14 lines
329 B
TypeScript
Raw Normal View History

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('list', {
name: 'Truncate',
path: 'truncate',
// image,
description: '',
shortDescription: '',
keywords: ['truncate'],
component: lazy(() => import('./index'))
2024-07-09 23:38:29 +01:00
});