Implemented ReactJS Application Server with basic functionality.

This commit is contained in:
2025-03-20 02:43:13 -06:00
parent 5e6ad27f71
commit cffad033fa
11 changed files with 240 additions and 0 deletions

3
Data/WebUI/Canary.txt Normal file
View File

@ -0,0 +1,3 @@
This file exists to show that the custom reactjs code is being copied into the reactJS app before building it.
Additional code to flesh out the application will be added in the future.

25
Data/WebUI/src/App.js Normal file
View File

@ -0,0 +1,25 @@
import logo from './logo.svg';
import './App.css';
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Borealis Workflow Automation Tool
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
export default App;