chore: convert-days-to-hours init

This commit is contained in:
Ibrahima G. Coulibaly
2025-03-17 17:50:26 +00:00
parent 1577f098e0
commit 0a4186e4a5
6 changed files with 34 additions and 1 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 = [];

View File

@@ -18,7 +18,8 @@ export type ToolCategory =
| 'number' | 'number'
| 'gif' | 'gif'
| 'list' | 'list'
| 'json'; | 'json'
| 'date';
export interface DefinedTool { export interface DefinedTool {
type: ToolCategory; type: ToolCategory;