diff --git a/src/App.js b/src/App.js index 3784575..ee4c825 100644 --- a/src/App.js +++ b/src/App.js @@ -1,25 +1,28 @@ import logo from './logo.svg'; import './App.css'; +import React from 'react'; + +class App extends React.Component { + + render = ()=>{ + return
+

Contacts App

+
+

List of Current Conacts

+ +
+
+

Create a new Contact

+
+ Name:
+ Age:
+ +
+
+
+ } -function App() { - return ( -
-
- logo -

- Edit src/App.js and save to reload. -

- - Learn React - -
-
- ); } export default App;