adiguno_hello-nemesis/ReactView.tsx

10 lines
163 B
TypeScript
Raw Normal View History

2025-01-31 13:56:48 +00:00
import * as React from "react";
export const ExampleReactView = () => {
return (
<div>
<h1>Hello Nemesis</h1>
<p>This is a React view</p>
</div>
);
};