Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
korayaggul opened this issue Nov 11, 2022 · 1 comment

Comments

@korayaggul
Copy link

korayaggul commented Nov 11, 2022

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
Copy link

Hi. Did you find a fix in the end?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants
@ThomasCarstens @korayaggul and others