deleting date dir

This commit is contained in:
Chesterkxng
2025-03-24 21:09:51 +00:00
parent d1b53fa62e
commit 76ca4254ca
5 changed files with 0 additions and 32 deletions

View File

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

View File

@@ -1,12 +0,0 @@
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

@@ -1,12 +0,0 @@
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

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