Files
omni-tools/src/pages/list/reverse/meta.ts
Ibrahima G. Coulibaly 7b021d0770 fix: style
2024-07-09 23:38:29 +01:00

14 lines
326 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('list', {
name: 'Reverse',
path: 'reverse',
// image,
description: '',
shortDescription: '',
keywords: ['reverse'],
component: lazy(() => import('./index'))
});