react-awesome-button-namdaoduy
Version:
Performant, extendable, highly customisable, production ready React Component that renders an animated basic set of UI buttons
16 lines (12 loc) • 314 B
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import Styles from './section.scss';
const Section = ({ children }) => (
<section className={Styles.container}>
{children}
</section>
);
Section.propTypes = {
children: PropTypes.node.isRequired,
};
export default Section;