Files
omni-tools/src/pages/string/randomize-case/meta.ts
Ibrahima G. Coulibaly 46859592cf feat: rotate ui
2024-07-14 00:23:30 +01:00

14 lines
352 B
TypeScript

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