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