9 lines
287 B
TypeScript
9 lines
287 B
TypeScript
|
import { GridSettings } from '../grid-settings/grid-settings';
|
||
|
import { useFundingPaymentsStore } from './funding-payments-container';
|
||
|
|
||
|
export const FundingPaymentsSettings = () => (
|
||
|
<GridSettings
|
||
|
updateGridStore={useFundingPaymentsStore((store) => store.updateGridStore)}
|
||
|
/>
|
||
|
);
|