Merge branch 'chesterkxng' of https://github.com/iib0011/omni-tools into chesterkxng

This commit is contained in:
Chesterkxng
2025-03-24 20:27:08 +00:00
5 changed files with 32 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,12 @@
import { Box } from '@mui/material';
import React from 'react';
import * as Yup from 'yup';
type InitialValuesType = {};
const initialValues: InitialValuesType = {};
const validationSchema = Yup.object({
// splitSeparator: Yup.string().required('The separator is required')
});
export default function ConvertDaysToHours() {
return <Box>Lorem ipsum</Box>;
}

View File

@@ -0,0 +1,12 @@
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('date', {
name: 'Convert days to hours',
path: 'convert-days-to-hours',
icon: '',
description: '',
shortDescription: '',
keywords: ['convert', 'days', 'to', 'hours'],
component: lazy(() => import('./index'))
});

View File

@@ -0,0 +1,2 @@
import { tool as dateConvertDaysToHours } from './convert-days-to-hours/meta';
export const dateTools = [];