rot13 tool, testCases then updated index file

This commit is contained in:
Chesterkxng
2024-07-12 00:09:21 +00:00
parent 350061d79e
commit a83af6a82e
5 changed files with 90 additions and 0 deletions

View File

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