All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.core.Root.jsx Maven / Gradle / Ivy

The newest version!
import React from 'react'
import PropTypes from 'prop-types'
import { pure } from 'recompose'

// eslint-disable-next-line import/no-cycle,import/no-named-as-default
import OverlayPages from './OverlayPages'

function Root({ children }) {
    return (
        <>
            {children}
            
        
    )
}

Root.propTypes = {
    children: PropTypes.node,
}

export default pure(Root)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy