Set up ProxyFrame.tsx for later use

This commit is contained in:
rift 2023-12-15 19:00:06 -06:00
parent 8a26062442
commit 83f1083d75
2 changed files with 9 additions and 0 deletions

7
src/ProxyFrame.tsx Normal file
View file

@ -0,0 +1,7 @@
export function ProxyFrame(props: { id: string }) {
return (
<div>
<h1>{props.id}</h1>
</div>
);
}