refactor: optimize imports

This commit is contained in:
Ibrahima G. Coulibaly
2024-07-14 00:51:39 +01:00
parent 424436d07a
commit 3c5c0b9499
31 changed files with 59 additions and 63 deletions

View File

@@ -2,7 +2,6 @@ import { Box } from '@mui/material';
import React, { useState } from 'react';
import ToolTextInput from '../../../components/input/ToolTextInput';
import ToolTextResult from '../../../components/result/ToolTextResult';
import * as Yup from 'yup';
import ToolOptions from '../../../components/options/ToolOptions';
import { Sort, SortingMethod, SplitOperatorType } from './service';
import ToolInputAndResult from '../../../components/ToolInputAndResult';

View File

@@ -1,12 +1,12 @@
// Import necessary modules and functions
import { describe, it, expect } from 'vitest';
import { describe, expect, it } from 'vitest';
import {
alphabeticSort,
lengthSort,
numericSort,
Sort,
SplitOperatorType,
SortingMethod
SortingMethod,
SplitOperatorType
} from './service';
// Define test cases for the numericSort function