1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-28 00:27:40 +02:00
portfolio/src/components/atoms/FullWidth.jsx

14 lines
279 B
React
Raw Normal View History

2018-04-03 22:35:53 +02:00
import React from 'react'
import PropTypes from 'prop-types'
2020-03-07 03:11:52 +01:00
import styles from './FullWidth.module.css'
2018-04-03 22:35:53 +02:00
2018-06-11 19:48:38 +02:00
const FullWidth = ({ children }) => (
<div className={styles.fullWidth}>{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