UNPKG

gatsby-theme-try-ghost

Version:

A Gatsby theme for building flaring fast blogs from headless Ghost CMS.

21 lines (16 loc) 326 B
import React from 'react' import PropTypes from 'prop-types' /** * * Placeholder for OverlayContainer * */ class OverlayContainer extends React.Component { render() { return this.props.render(this) } } OverlayContainer.propTypes = { render: PropTypes.func.isRequired, } export default OverlayContainer