14 lines
530 B
TypeScript
Raw Normal View History

2024-06-23 20:49:05 +01:00
import { defineTool } from '@tools/defineTool';
2024-06-22 22:06:16 +01:00
import { lazy } from 'react';
2024-06-23 20:49:05 +01:00
import image from '@assets/text.png';
2024-06-22 22:06:16 +01:00
export const tool = defineTool('string', {
path: 'split',
name: 'Text splitter',
2024-06-23 01:42:50 +01:00
image,
2024-06-22 22:06:16 +01:00
description:
"World's simplest browser-based utility for splitting text. Load your text in the input form on the left and you'll automatically get pieces of this text on the right. Powerful, free, and fast. Load text get chunks.",
keywords: ['text', 'split'],
component: lazy(() => import('./index'))
});