import {
StreamVideo,
StreamVideoClient,
} from "@stream-io/video-react-native-sdk";
export const App = () => {
const client = new StreamVideoClient(/* ... */);
return (
<StreamVideo client={client}>
<MyUI />
</StreamVideo>
);
};