mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-07 17:34:56 +05:30
13 lines
332 B
TypeScript
13 lines
332 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('list', {
|
|
name: 'Duplicate',
|
|
path: 'duplicate',
|
|
// image,
|
|
description: '',
|
|
shortDescription: '',
|
|
keywords: ['duplicate'],
|
|
component: lazy(() => import('./index'))
|
|
});
|