![JAR search and dependency download from the Maven repository](/logo.png)
components.pages.TopLeftRightPage.FixedContainer.jsx Maven / Gradle / Ivy
import React from 'react'
import PropTypes from 'prop-types'
import classNames from 'classnames'
function FixedContainer({ className, fixed, width, style, children }) {
return (
{children}
)
}
FixedContainer.propTypes = {
className: PropTypes.string,
fixed: PropTypes.string,
width: PropTypes.object,
style: PropTypes.object,
children: PropTypes.oneOfType([
PropTypes.func,
PropTypes.node,
PropTypes.element,
]),
}
FixedContainer.defaultProps = {
width: 'auto',
style: {},
}
export default FixedContainer
© 2015 - 2025 Weber Informatics LLC | Privacy Policy