UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

8 lines (7 loc) 263 B
import React from 'react'; import { makeProps } from '../utils'; import View from './View'; const Main = ({ config, content }) => { return (React.createElement(View, Object.assign({ as: "main" }, makeProps(config, 'main')), content)); }; export default Main;