UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

9 lines (8 loc) 389 B
import React from 'react'; import { makeProps } from '../utils'; import View from './View'; const CheckoutContent = ({ config, children }) => { return (React.createElement(View, Object.assign({}, makeProps(config, 'checkoutContent')), React.createElement(View, Object.assign({}, makeProps(config, 'checkoutContent__container')), children))); }; export default CheckoutContent;