mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-16 12:58:35 +05:30
feat: Implement ToolContent for duplicate tool page.
This commit is contained in:
parent
0b2fbb5cd1
commit
3bfb521d26
1 changed files with 9 additions and 1 deletions
|
|
@ -1,11 +1,19 @@
|
|||
import { Box } from '@mui/material';
|
||||
import React from 'react';
|
||||
import * as Yup from 'yup';
|
||||
import ToolContent from '@components/ToolContent';
|
||||
|
||||
const initialValues = {};
|
||||
const validationSchema = Yup.object({
|
||||
// splitSeparator: Yup.string().required('The separator is required')
|
||||
});
|
||||
export default function Duplicate() {
|
||||
return <Box>Lorem ipsum</Box>;
|
||||
return (
|
||||
<ToolContent
|
||||
title="Duplicate"
|
||||
initialValues={initialValues}
|
||||
compute={() => {}}
|
||||
resultComponent={<Box>Lorem ipsum</Box>}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue