Files
omni-tools/src/pages/tools/number/generic-calc/meta.ts

18 lines
429 B
TypeScript
Raw Normal View History

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
async function importComponent() {
const x = await import('./index');
return { default: x.default() };
}
export const tool = defineTool('number', {
name: 'Generic calc',
path: 'generic-calc',
icon: '',
description: '',
shortDescription: '',
keywords: ['generic', 'calc'],
longDescription: '',
component: lazy(importComponent)
});