From a8e9724cdea42e58378ba95dd96792337042317c Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Tue, 24 Jul 2018 23:19:15 -0600 Subject: [PATCH] Fix quotes: " -> ' --- src/App.js | 2 +- src/Home.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.js b/src/App.js index 783b2ec..20e40c8 100644 --- a/src/App.js +++ b/src/App.js @@ -6,7 +6,7 @@ import './App.css'; const App = () => ( - + ); diff --git a/src/Home.js b/src/Home.js index a709a45..25fbc96 100644 --- a/src/Home.js +++ b/src/Home.js @@ -4,7 +4,7 @@ import './Home.css'; class Home extends React.Component { render() { return ( -
+
Hello world!
);