created secondary button component

This commit is contained in:
Yusuf Ipek
2021-05-02 10:47:03 +03:00
parent 9199a562e8
commit 53eeb464a2
8 changed files with 83 additions and 8 deletions
@@ -0,0 +1,5 @@
function ButtonSecondary(props) {
return <button className="btn-text">{props.text}</button>;
}
export default ButtonSecondary;