Importing Necessary Libraries and js-sdk functions
Describing Code :
Line 1
import React
useState
is a Hook that lets you add React state to function components. A Hook is a special function that lets you “hook into” React features.Line 2
import Head from "next/head"
expose a built-in component for appending elements to thehead
of the page.Line 4 to 51 import all the functionalities from js-sdk to use in the sample web app .Check SDK Reference here.
Line 53 import variables to capture the current playing audio or video.
Line 54 import link CSS (stylesheet files) file in the HTML
<head>
Last updated