New Page for PM
This commit is contained in:
parent
4c22ba478d
commit
589a135bb5
1 changed files with 20 additions and 0 deletions
|
@ -0,0 +1,20 @@
|
||||||
|
import BasicWindow from "../../Components/BasicWindow";
|
||||||
|
import BackButton from "../../Components/BackButton";
|
||||||
|
import OtherUsersTR from "../../Components/OtherUsersTR";
|
||||||
|
|
||||||
|
function PMViewOtherUsersTR(): JSX.Element {
|
||||||
|
const content = (
|
||||||
|
<>
|
||||||
|
<OtherUsersTR />
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
|
||||||
|
const buttons = (
|
||||||
|
<>
|
||||||
|
<BackButton />
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
|
||||||
|
return <BasicWindow content={content} buttons={buttons} />;
|
||||||
|
}
|
||||||
|
export default PMViewOtherUsersTR;
|
Loading…
Reference in a new issue