16 lines
324 B
JavaScript
Raw Normal View History

2020-06-14 11:06:49 +02:00
import React from "react";
import PropTypes from "prop-types";
import styles from "./modules/Button.module.css";
export default function Example(props) {
return (
2020-06-14 16:20:45 +02:00
<button className={styles.container} {...props}>
2020-06-14 11:06:49 +02:00
{props.label}
</button>
);
}
Example.propTypes = {
label: PropTypes.string.isRequired,
};