import * as React from "react"; type ExampleReactViewProps = { contents: string[]; }; // todo make text selectable or copyable export const NemesisRightReactView = ({ contents }: ExampleReactViewProps) => { return (

Hello My Nemesis

{contents.map((content, index) => { return (

{content}

); })}
); };