From 9c6713a8cee48529eb11f7b16845eb6bd1e2a482 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Mon, 21 Mar 2022 12:14:47 +0330 Subject: wip --- spring-front/src/index.css | 0 spring-front/src/index.html | 23 +++++++++++++++++++++++ spring-front/src/index.js | 9 +++++++++ spring-front/src/index.jsx | 20 ++++++++++++++++++++ 4 files changed, 52 insertions(+) create mode 100644 spring-front/src/index.css create mode 100644 spring-front/src/index.html create mode 100644 spring-front/src/index.js create mode 100644 spring-front/src/index.jsx (limited to 'spring-front/src') diff --git a/spring-front/src/index.css b/spring-front/src/index.css new file mode 100644 index 0000000..e69de29 diff --git a/spring-front/src/index.html b/spring-front/src/index.html new file mode 100644 index 0000000..d82108b --- /dev/null +++ b/spring-front/src/index.html @@ -0,0 +1,23 @@ + + + + + + + + + + + link + + +
+ + + diff --git a/spring-front/src/index.js b/spring-front/src/index.js new file mode 100644 index 0000000..81d4809 --- /dev/null +++ b/spring-front/src/index.js @@ -0,0 +1,9 @@ +import React from "react"; + +const page = ( +
+

Hello, everyone!

+

A paragraph

+
+); +React.ReactDOM.render(page, document.getElementById("root")); diff --git a/spring-front/src/index.jsx b/spring-front/src/index.jsx new file mode 100644 index 0000000..0ef0cdf --- /dev/null +++ b/spring-front/src/index.jsx @@ -0,0 +1,20 @@ +import React from "react"; + +const page = ( +
+

Hello, everyone!

+

A paragraph

+
+); + +const navbar = ( + +) +React.ReactDOM.render(navbar, document.getElementById("root")); -- cgit v1.2.3