mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
14 lines
298 B
JavaScript
14 lines
298 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import styles from './Container.module.scss'
|
|
|
|
const Container = ({ children }) => (
|
|
<section className={styles.container}>{children}</section>
|
|
)
|
|
|
|
Container.propTypes = {
|
|
children: PropTypes.any.isRequired
|
|
}
|
|
|
|
export default Container
|