mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-26 09:29:30 +02:00
Create new tool
This commit is contained in:
@@ -0,0 +1,6 @@
|
|||||||
|
import { expect, describe, it } from 'vitest';
|
||||||
|
// import { } from './service';
|
||||||
|
//
|
||||||
|
// describe('convert-jgp-to-png', () => {
|
||||||
|
//
|
||||||
|
// })
|
11
src/pages/image/png/convert-jgp-to-png/index.tsx
Normal file
11
src/pages/image/png/convert-jgp-to-png/index.tsx
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
import { Box } from '@mui/material';
|
||||||
|
import React from 'react';
|
||||||
|
import * as Yup from 'yup';
|
||||||
|
|
||||||
|
const initialValues = {};
|
||||||
|
const validationSchema = Yup.object({
|
||||||
|
// splitSeparator: Yup.string().required('The separator is required')
|
||||||
|
});
|
||||||
|
export default function ConvertJgpToPng() {
|
||||||
|
return <Box>Lorem ipsum</Box>;
|
||||||
|
}
|
14
src/pages/image/png/convert-jgp-to-png/meta.ts
Normal file
14
src/pages/image/png/convert-jgp-to-png/meta.ts
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import { defineTool } from '@tools/defineTool';
|
||||||
|
import { lazy } from 'react';
|
||||||
|
// import image from '@assets/text.png';
|
||||||
|
|
||||||
|
export const tool = defineTool('png', {
|
||||||
|
name: 'Convert jgp to png',
|
||||||
|
path: 'convert-jgp-to-png',
|
||||||
|
// image,
|
||||||
|
description:
|
||||||
|
'Quickly your JPG images to PNG. Just import your PNG image in the editor on the left',
|
||||||
|
shortDescription: '',
|
||||||
|
keywords: ['convert', 'jgp', 'to', 'png'],
|
||||||
|
component: lazy(() => import('./index'))
|
||||||
|
});
|
0
src/pages/image/png/convert-jgp-to-png/service.ts
Normal file
0
src/pages/image/png/convert-jgp-to-png/service.ts
Normal file
@@ -1,3 +1,4 @@
|
|||||||
|
import { tool as pngConvertJgpToPng } from './convert-jgp-to-png/meta';
|
||||||
import { tool as pngCreateTransparent } from './create-transparent/meta';
|
import { tool as pngCreateTransparent } from './create-transparent/meta';
|
||||||
import { tool as changeColorsInPng } from './change-colors-in-png/meta';
|
import { tool as changeColorsInPng } from './change-colors-in-png/meta';
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user