1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-30 21:51:50 +02:00
portfolio/src/components/atoms/FullWidth.jsx

12 lines
249 B
React
Raw Normal View History

2018-04-03 22:35:53 +02:00
import React from 'react'
import PropTypes from 'prop-types'
2018-04-06 17:24:35 +02:00
import './FullWidth.scss'
2018-04-03 22:35:53 +02:00
2018-04-11 21:46:18 +02:00
const FullWidth = ({ children }) => <div className="full-width">{children}</div>
2018-04-03 22:35:53 +02:00
FullWidth.propTypes = {
2018-05-14 22:30:18 +02:00
children: PropTypes.node
2018-04-03 22:35:53 +02:00
}
export default FullWidth