mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-04-20 00:10:03 +02:00
14 lines
246 B
TypeScript
14 lines
246 B
TypeScript
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; |