Add README to generated project. (#33)

* Add README to generated project

* add logo.svg

* syntax cleanup
This commit is contained in:
eanplatter
2016-07-20 23:05:41 -05:00
committed by Dan Abramov
parent 9df1c2ff16
commit a6edb523a8
9 changed files with 76 additions and 40 deletions

24
template/src/App.css Normal file
View File

@@ -0,0 +1,24 @@
.App {
text-align: center;
}
.App-logo {
animation: spin infinite 20s linear;
height: 80px;
}
.App-header {
background-color: #222;
height: 150px;
padding: 20px;
color: white;
}
.App-intro {
font-size: large;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}