diff options
author | terminaldweller <thabogre@gmail.com> | 2022-03-21 22:03:38 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-03-21 22:03:38 +0000 |
commit | a9d14201191149df78a041c5c129a359c71d9055 (patch) | |
tree | 2be4f1342e2b3682be56669888b430760f80d278 /spring-front/src/index.js | |
parent | wip (diff) | |
download | mdrtl-a9d14201191149df78a041c5c129a359c71d9055.tar.gz mdrtl-a9d14201191149df78a041c5c129a359c71d9055.zip |
wip
Diffstat (limited to 'spring-front/src/index.js')
-rw-r--r-- | spring-front/src/index.js | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/spring-front/src/index.js b/spring-front/src/index.js index d62147c..e6b507f 100644 --- a/spring-front/src/index.js +++ b/spring-front/src/index.js @@ -1,14 +1,16 @@ import React from "react"; import ReactDOM from "react-dom"; -const navbar = ( - <nav> - <h1>terminaldweller.com</h1> - <ul> - <li>Pricing</li> - <li>About</li> - <li>Contact</li> - </ul> - </nav> +const page = ( + <div> + <h1>my awesome website in react</h1> + <h3>REasons</h3> + <ol> + <li>one</li> + <li>two</li> + <li>three</li> + <li>four</li> + </ol> + </div> ); -ReactDOM.render(navbar, document.getElementById("root")); +ReactDOM.render(page, document.getElementById("root")); |