adiguno_hello-nemesis/ReactView.tsx
2025-01-31 21:56:48 +08:00

9 lines
163 B
TypeScript

import * as React from "react";
export const ExampleReactView = () => {
return (
<div>
<h1>Hello Nemesis</h1>
<p>This is a React view</p>
</div>
);
};