JSX element type 'VideoRecorder' does not have any construct or call signatures.
korayaggul opened this issue · 1 comments
korayaggul commented
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 && (
<>
);
};
ThomasCarstens commented
Hi. Did you find a fix in the end?