omni-tools/src/pages/number/sum/meta.ts
Ibrahima G. Coulibaly cfe0d324fe feat: sum numbers init
2024-06-25 03:11:48 +01:00

13 lines
547 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('number', {
name: 'Number Sum Calculator',
path: 'sum',
// image,
description:
'Quickly calculate the sum of numbers in your browser. To get your sum, just enter your list of numbers in the input field, adjust the separator between the numbers in the options below, and this utility will add up all these numbers.',
keywords: ['sum'],
component: lazy(() => import('./index'))
});