mirror of
https://github.com/kremalicious/portfolio.git
synced 2025-02-14 21:10:41 +01:00
14 lines
279 B
JavaScript
14 lines
279 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import styles from './FullWidth.module.css'
|
|
|
|
const FullWidth = ({ children }) => (
|
|
<div className={styles.fullWidth}>{children}</div>
|
|
)
|
|
|
|
FullWidth.propTypes = {
|
|
children: PropTypes.node
|
|
}
|
|
|
|
export default FullWidth
|