react-video-recorder icon indicating copy to clipboard operation
react-video-recorder copied to clipboard

JSX element type 'VideoRecorder' does not have any construct or call signatures.

Open korayaggul opened this issue 2 years ago • 1 comments

import VideoRecorder from "react-video-recorder";

const FromVideoRecorder = (props: FRInterface) => { return (

{!props.video && ( <VideoRecorder // JSX element type 'VideoRecorder' does not have any construct or call signatures. isFlipped={false} countdownTime={0} mimeType="video/webm" constraints={{ audio: true, video: true, }} onRecordingComplete={(videoBlob: any) => { props.setVideo(videoBlob); }} /> )} {props.video && ( <> <video src={window.URL.createObjectURL(props.video)} width="100%" height="100%" autoPlay controls /> </> )}
); };

korayaggul avatar Nov 11 '22 15:11 korayaggul

Hi. Did you find a fix in the end?

ThomasCarstens avatar Jan 25 '23 13:01 ThomasCarstens