Skip to main content
Version: v4.0

MetaProvider

High order component. Needed to ensure the library works in the parent app.js

App.tsx
import { MetaProvider} from "pixel-streaming";

export default function AppHOC(props: any) {
return (
<MetaProvider>
<Component {...props} />
</MetaProvider>
);
}