diff --git a/02/src/App.js b/02/src/App.js index 475b4d85..96cb9b77 100644 --- a/02/src/App.js +++ b/02/src/App.js @@ -99,31 +99,40 @@ class App extends React.Component { } render() { - return ( -
-

Hi, I'm a React App, I'm cute.

-

Created using OOP code

- - - - - {/*
- Main Character - - */} -
- ); + const style = { + backgroundColor: 'white', + font: 'inherit', + border: '1px solid blue', + padding: '8px' + }; + + return ( +
+

Hi, I'm a React App, I'm cute.

+

Created using OOP code

+ + + + + {/*
+ Main Character + + */} +
+ ); // return React.createElement('div', {className: 'App'}, React.createElement('h1', null, `Oh Hay I'm a React App!!!`)); } }