add styles to weather page

This commit is contained in:
2017-01-18 00:33:30 -08:00
parent 6714a949dd
commit 30af94b390
4 changed files with 8 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ var React = require('react');
// (or)
var WeatherMessage = ({temp, location}) => {
return (
<h3>It's it {temp} in {location}.</h3>
<h3 className="text-center">It's it {temp} in {location}.</h3>
)
};