46. Inserindo a referência ao About.js no App.js
diff --git a/src/App.js b/src/App.js
index a323f83..b9d3f2a 100644
--- a/src/App.js
+++ b/src/App.js
@@ -3,12 +3,14 @@ import React from 'react'
import Menu from './Menu'
import Header from './Header'
import Main from './Main'
+import About from './About'
const App = _ =>
<>
<Menu/>
<Header/>
<Main/>
+ <About/>
</>
export default App
3$ git-apply as.diff src/App.js