vega-frontend-monorepo/apps/trading/components/fills-container/fills-settings.tsx

9 lines
246 B
TypeScript
Raw Normal View History

import { GridSettings } from '../grid-settings/grid-settings';
import { useFillsStore } from './fills-container';
export const FillsSettings = () => (
<GridSettings
updateGridStore={useFillsStore((store) => store.updateGridStore)}
/>
);