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

12 lines
273 B
JavaScript

import React from 'react'
import PropTypes from 'prop-types'
import { fullWidth } from './FullWidth.module.css'
const FullWidth = ({ children }) => <div className={fullWidth}>{children}</div>
FullWidth.propTypes = {
children: PropTypes.node
}
export default FullWidth