Personal-site/components/Section.js
2020-06-14 13:47:02 +02:00

15 lines
271 B
JavaScript

import PropTypes from "prop-types";
import React from "react";
export default function Section(props) {
return (
<section className="wrapper" {...props}>
{props.children}
</section>
);
}
Section.propTypes = {
children: PropTypes.node.isRequired,
};