From a56ea7dbeca55c6da1fe74f524089c5bbbda4b53 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Sat, 27 Feb 2021 10:21:21 -0500 Subject: [PATCH] basic html --- src/App.js | 41 ++++++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 19 deletions(-) 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;