vega-frontend-monorepo/apps/trading/client-pages/markets/markets-settings.tsx

9 lines
268 B
TypeScript
Raw Normal View History

import { GridSettings } from '../../components/grid-settings/grid-settings';
import { useMarketsStore } from './market-list-table';
export const MarketsSettings = () => (
<GridSettings
updateGridStore={useMarketsStore((store) => store.updateGridStore)}
/>
);