mirror of
https://github.com/kremalicious/portfolio.git
synced 2025-01-27 09:56:23 +01:00
12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import './Content.scss'
|
|
|
|
const Content = ({ children }) => <div className="content">{children}</div>
|
|
|
|
Content.propTypes = {
|
|
children: PropTypes.node,
|
|
}
|
|
|
|
export default Content
|