This commit is contained in:
Alex Rennie-Lis
2025-06-10 01:07:27 +01:00
parent d5e17b7bef
commit 72f366f844
19 changed files with 17876 additions and 0 deletions

35
ui/sinatra-ui/src/App.js Executable file
View File

@@ -0,0 +1,35 @@
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>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
function Div2() {
return (
<div>
<p>
This is a test function.
</p>
</div>
);
}
export {App, Div2};