You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I'm trying to use this for a personal project but I'm running into this issue.
My class is like this:
importReactfrom'react';import{MediaPlayer}from'win95-media-player';constVideoPlayer=({onHide, video, title})=>{const_handleClose=()=>{onHide('lettoreVideo')};constplaylist=[{url: '../assets/'+video,title: title? title : 'Windows Media Player'}];return(<divclassName="players-container"><MediaPlayerclassName="player"playlist={playlist}showVideofullscreenEnabled/></div>);}exportdefaultVideoPlayer;
which kinda fix the error (if I change it in the node_modules folder) but I run into other issues.
I'm not good with react or even js so I can't really help, I could't even understand where that file comes from ;p
The text was updated successfully, but these errors were encountered:
Hello, I'm trying to use this for a personal project but I'm running into this issue.
My class is like this:
But upon adding and running it i get the error
Cheking the internet and the
ProgressControl.js
file it seems like you can't mixtogether with
but instead you should use
which kinda fix the error (if I change it in the node_modules folder) but I run into other issues.
I'm not good with react or even js so I can't really help, I could't even understand where that file comes from ;p
The text was updated successfully, but these errors were encountered: