@hbsis.uikit/react
Version:
Biblioteca ReactJS
19 lines (15 loc) • 362 B
JavaScript
import React from 'react'
import PropTypes from 'prop-types'
import ContentStyled from './content.styled'
const Content = ({ children, stretch }) => {
return (
<ContentStyled stretch={stretch}>
{children}
</ContentStyled>
)
}
Content.propTypes = {
children: PropTypes.node,
stretch: PropTypes.bool
}
export { Content }