1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-23 01:36:39 +02:00
portfolio/src/components/atoms/FullWidth.jsx

12 lines
273 B
React
Raw Normal View History

2018-04-03 22:35:53 +02:00
import React from 'react'
import PropTypes from 'prop-types'
2021-03-12 23:47:28 +01:00
import { fullWidth } from './FullWidth.module.css'
2018-04-03 22:35:53 +02:00
2021-03-12 23:47:28 +01:00
const FullWidth = ({ children }) => <div className={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