Fix quotes: " -> '

This commit is contained in:
Tanner Collin 2018-07-24 23:19:15 -06:00
parent e653aa80cb
commit a8e9724cde
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import './App.css';
const App = () => (
<Switch>
<Route exact path="/" component={Home} />
<Route exact path='/' component={Home} />
</Switch>
);

View File

@ -4,7 +4,7 @@ import './Home.css';
class Home extends React.Component {
render() {
return (
<div className="Home">
<div className='Home'>
Hello world!
</div>
);