Media Chrome in React
Media Chrome provides a React version of every component to make using Media Chrome in your React app easy and idiomatic. These are included in our standard npm package.
To use, simply import any components from "media-chrome/react"
.
Components
Section titled ComponentsTo follow React conventions, the wrapper components use PascalCase for the component name, so
<media-controller>
becomes<MediaController/>
<media-play-button>
becomes<MediaPlayButton/>
<media-volume-range>
becomes<MediaVolumeRange>
and so on. For a complete list of components, see the left sidebar.
Properties
Section titled PropertiesAlso, to keep things “idiomatically React”, the wrapper components use camelCase prop names for lowercase attribute names, so
seekoffset
becomesseekOffset
showduration
becomesshowDuration
and so on.
Putting it all together, a simple example:
Section titled Putting it all together, a simple example:Here’s a simple example of what it looks like to use Media Chrome in React with the wrapper components:
For a full demo, check out our NextJS Demo App