mirror of
https://github.com/adiguno/hello-nemesis.git
synced 2026-07-22 05:37:31 +00:00
10 lines
163 B
TypeScript
10 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>
|
||
|
|
);
|
||
|
|
};
|