Created the Button component

This commit is contained in:
Mathias Wagner 2022-09-12 00:58:18 +02:00
parent ac067fced5
commit 8288a9469c

View File

@ -0,0 +1,9 @@
import "./styles.sass";
const Button = (props) => {
return (
<button className="primary-btn">{props.text}</button>
)
}
export default Button;