adding text joiner

This commit is contained in:
Made4Uo
2024-06-23 00:47:12 -07:00
parent 3ca1b7cd02
commit cbb7790e8f
6 changed files with 228 additions and 3 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', {
path: 'join',
name: 'Text Joiner',
image,
description:
"World's Simplest Text Tool World's simplest browser-based utility for joining text. Load your text in the input form on the left and you'll automatically get merged text on the right. Powerful, free, and fast. Load text get joined lines",
keywords: ['text', 'join'],
component: lazy(() => import('./index'))
});