mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
refactor: optimize imports
This commit is contained in:
@@ -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';
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user