Compare commits

...

2 commits

Author SHA1 Message Date
BlightG
c3a1f948b1 tool setup 2024-06-29 11:00:59 +03:00
BlightG
50f6a94dda tool setup 2024-06-29 10:58:45 +03:00
5 changed files with 33 additions and 0 deletions

3
src/pages/json/index.ts Normal file
View file

@ -0,0 +1,3 @@
import { tool as jsonPrettify } from './prettify/meta';
import { tool as jsonPrettify } from './prettify/meta';
export const jsonTools = [];

View 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 Prettify() {
return <Box>Lorem ipsum</Box>;
}

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('json', {
name: 'Prettify',
path: 'prettify',
// image,
description: '',
shortDescription: '',
keywords: ['prettify'],
component: lazy(() => import('./index'))
});

View file

@ -0,0 +1,6 @@
import { expect, describe, it } from 'vitest';
// import { } from './service';
//
// describe('prettify', () => {
//
// })

View file