14 lines
333 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: 'Unwrap',
path: 'unwrap',
2025-02-25 06:17:10 +00:00
icon: 'mdi:unwrap',
description: '',
shortDescription: '',
keywords: ['unwrap'],
component: lazy(() => import('./index'))
2024-07-09 23:38:29 +01:00
});