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

components.pages.StandardPage.StandardPage.jsx Maven / Gradle / Ivy

The newest version!
import React from 'react'
import PropTypes from 'prop-types'

import DefaultPage from '../DefaultPage'
import PageRegions from '../PageRegions'

/**
 * Страница с одной зоной
 * @param id
 * @param regions
 * @param rest
 * @return {*}
 * @constructor
 */
function StandardPage({ id, regions, routable, ...rest }) {
    return (
        
            
) } StandardPage.propTypes = { id: PropTypes.string, regions: PropTypes.object, } StandardPage.defaultProps = { regions: {}, } export default StandardPage




© 2015 - 2024 Weber Informatics LLC | Privacy Policy