14 lines
317 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: 'Wrap',
path: 'wrap',
2025-03-02 03:09:29 +00:00
icon: '',
description: '',
shortDescription: '',
keywords: ['wrap'],
component: lazy(() => import('./index'))
2024-07-09 23:38:29 +01:00
});