diff --git a/README.md b/README.md index 8805ebd..e7754c6 100644 --- a/README.md +++ b/README.md @@ -31,4 +31,5 @@ Adapting [React Quickstart](https://www.100ms.live/docs/javascript/v2/guides/rea 9. Implement page.svelte, also add a leave on unload function for handling tab closing. Implement header with a logo and a leave button. 10. Implement JoinForm, takes in name and token and calls join function 11. Implement Conference, create a stub Peer.Svelte. Peer.svelte will use the Video.svelte file to render video and additionally show more details related to the peer. -12. \ No newline at end of file +12. Implement Peer Component using Video and showing the peer name +13. \ No newline at end of file diff --git a/src/routes/Peer.svelte b/src/routes/Peer.svelte index 30afbce..8297930 100644 --- a/src/routes/Peer.svelte +++ b/src/routes/Peer.svelte @@ -1,7 +1,23 @@ -
- Peer - {peer.name} -
\ No newline at end of file +Video - {videoTrackId} - {isLocal}
\ No newline at end of file