Added react example

This commit is contained in:
Micah Godbolt
2019-02-15 16:55:03 -08:00
parent a7abd33140
commit b90e710ba0
7 changed files with 306 additions and 25 deletions

View File

@@ -0,0 +1,14 @@
.Button {
background: #0078d4;
color: white;
padding: 5px 10px;
outline: none;
border: none;
}
.Button:hover {
background: #005a9e;
}
.Button:active {
background: #004578;
}