shuffle service and testCases

This commit is contained in:
Chesterkxng
2024-06-30 23:17:06 +00:00
parent d6fc974a80
commit 8be0a1f76d
4 changed files with 157 additions and 0 deletions

View File

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