feat: prettier
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import styles from './MarketplacesPage.module.css';
|
||||
import styles from "./MarketplacesPage.module.css";
|
||||
import PageBlock from "../../../components/PageBlock/PageBlock.tsx";
|
||||
import ClientSelectNew from "../../../components/Selects/ClientSelectNew/ClientSelectNew.tsx";
|
||||
import useMarketplacesPageState from "../hooks/useMarketplacesPageState.tsx";
|
||||
@@ -7,23 +7,20 @@ import MarketplacesTable from "../components/MarketplacesTable/MarketplacesTable
|
||||
export const MarketplacesPage = () => {
|
||||
const state = useMarketplacesPageState();
|
||||
return (
|
||||
<div className={styles['container']}>
|
||||
<div className={styles["container"]}>
|
||||
<PageBlock>
|
||||
<div className={styles['top-panel']}>
|
||||
<div className={styles["top-panel"]}>
|
||||
<ClientSelectNew
|
||||
placeholder={'Выберите клиента'}
|
||||
placeholder={"Выберите клиента"}
|
||||
onChange={state.setClient}
|
||||
/>
|
||||
</div>
|
||||
</PageBlock>
|
||||
<PageBlock>
|
||||
<>
|
||||
<MarketplacesTable
|
||||
{...state}
|
||||
/>
|
||||
|
||||
<MarketplacesTable {...state} />
|
||||
</>
|
||||
</PageBlock>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user