Add CRA webview-ui

This commit is contained in:
Saoud Rizwan
2024-07-06 01:35:59 -04:00
parent fd750864db
commit 4bfc2a5bc4
20 changed files with 19885 additions and 0 deletions

26
webview-ui/src/App.tsx Normal file
View File

@@ -0,0 +1,26 @@
import React from 'react';
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.tsx</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
export default App;