created button component and moved header to commons folder

This commit is contained in:
Yusuf Ipek
2021-04-29 15:23:08 +03:00
parent 4a6a7e8890
commit 9452abba7d
5 changed files with 40 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
import "./button.css";
function Button(props) {
return (
<a href="#" className="btn btn-white">
{props.text}
</a>
);
}
export default Button;