mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-06-12 15:57:12 +02:00
feat: adding frontend code (react)
This commit is contained in:
14
frontend/src/App.tsx
Normal file
14
frontend/src/App.tsx
Normal file
@ -0,0 +1,14 @@
|
||||
import React from 'react';
|
||||
|
||||
// A simple functional component
|
||||
const App: React.FC = () => {
|
||||
return (
|
||||
<div>
|
||||
<h1>Hello, world!</h1>
|
||||
<p>Welcome to my React application. This is some test.</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
export default App;
|
Reference in New Issue
Block a user