mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-25 00:49:32 +02:00
deleting date dir
This commit is contained in:
@@ -1,6 +0,0 @@
|
||||
import { expect, describe, it } from 'vitest';
|
||||
// import { } from './service';
|
||||
//
|
||||
// describe('convert-days-to-hours', () => {
|
||||
//
|
||||
// })
|
@@ -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>;
|
||||
}
|
@@ -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'))
|
||||
});
|
@@ -1,2 +0,0 @@
|
||||
import { tool as dateConvertDaysToHours } from './convert-days-to-hours/meta';
|
||||
export const dateTools = [];
|
Reference in New Issue
Block a user