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

components.core.templates.Template.jsx Maven / Gradle / Ivy

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

import { ConfigContainer } from '../../../plugins/Menu/MenuContainer'

import { Page } from './Page'

function Template({ children }) {
    return (
        
{children}} />
) } Template.propTypes = { children: PropTypes.oneOfType([ PropTypes.arrayOf(PropTypes.node), PropTypes.node, ]), } export default Template




© 2015 - 2024 Weber Informatics LLC | Privacy Policy