import { Box, Flex } from 'ui/grid'; import elementsRender from '../../config/elements-render'; import { id, title } from './config'; import PaymentsParams from './PaymentsParams'; import PaymentsTable from './PaymentsTable'; function Payments() { const radioGraphType = elementsRender.radioGraphType.render(); return ( {radioGraphType} ); } export default { id, title, Component: Payments, };