Created the Button.jsx

This commit is contained in:
2022-12-27 15:19:59 +01:00
parent 12afdf4db9
commit 8bf92ab397

View File

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