4adaeea40a
Co-authored-by: Dariusz Majcherczyk <dariusz.majcherczyk@gmail.com> Co-authored-by: Matthew Russell <mattrussell36@gmail.com>
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)}
|
|
/>
|
|
);
|