Add back button to PMOtherUsersTR component

This commit is contained in:
Davenludd 2024-03-14 10:50:52 +01:00
parent 2c9d3baafa
commit 7aa83b1d99

View file

@ -1,9 +1,19 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
function PMOtherUsersTR(): JSX.Element {
const content = <></>;
const buttons = <></>;
const buttons = (
<>
<Button
text="Back"
onClick={(): void => {
return;
}}
/>
</>
);
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
}