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

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

The newest version!
import React from 'react'
import { mapProps } from 'recompose'
import get from 'lodash/get'
import PropTypes from 'prop-types'

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

/**
 * Страница с зонами слева и справа
 * @param id
 * @param metadata
 * @param regions
 * @param width
 * @param rest
 * @constructor
 */
function LeftRightPage({ id, regions, width, ...rest }) {
    return (
        
            
) } LeftRightPage.propTypes = { id: PropTypes.string, regions: PropTypes.object, width: PropTypes.object, } LeftRightPage.defaultProps = { width: {}, } export default mapProps(props => ({ ...props, width: get(props, 'metadata.width', {}), }))(LeftRightPage)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy