|
|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
import React from 'react';
|
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
|
import {Button, Menu} from 'semantic-ui-react';
|
|
|
|
|
import { Menu } from 'semantic-ui-react';
|
|
|
|
|
import { Popup } from '../../lib/custom-ui';
|
|
|
|
|
|
|
|
|
|
import styles from './SortStep.module.scss';
|
|
|
|
|
@ -9,7 +9,7 @@ import styles from './SortStep.module.scss';
|
|
|
|
|
const SortStep = React.memo(({ title, onSort, onBack }) => {
|
|
|
|
|
const [t] = useTranslation();
|
|
|
|
|
|
|
|
|
|
const handeClick = (sortType) => onSort({sortType})
|
|
|
|
|
const handeClick = (sortType) => onSort({ sortType });
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
|