import React from "react"; import { Flex } from "theme-ui"; import PartyVideo from "./PartyVideo"; function Party({ streams }) { return ( {Object.entries(streams).map(([id, stream]) => ( ))} ); } export default Party;