Intellij 2016.1.4 and React render() method

121 Views Asked by At

I have a render method inside React component:

import * as React from "react";
import MediaService from "./service/MediaService";
import ComponentLifecycle = require("@types/react");
import DOMHelper from "../helpers/DOMHelper";

export default class PictureTaker extends React.Component implements ComponentLifecycle {
    // Not important

    render () {
        return (
          <article>
              <video id="ra-video">
                  Video not supported
              </video>
          </article>
        );
    }
}

It marks id as attribute id is not allowed here, but OK - I got it. I want to refactor code to extract <video> to another component:

import * as React from "react";

export default class VideoPlayer extends React.Component {
    constructor () {
        super();
    }

    render () {
        return (
            <video id="ra-video">
                Video not supported
            </video>
        );
    }
}

But it brokes with message: unresolved type video. Here is how it looks like: Broken render() method

Code for VideoPlayer is pasted from PictureTaker, and it suprised me. I have React:

React imported in project

And React DOM:

React DOM

inside Settings / Languages and frameworks / Javascript / Libraries. Do you see any mistakes made by me? Thank you in advance for every answer.

2

There are 2 best solutions below

3
On

Geez, I found a solution... I used .ts extension instead of .tsx. It was VideoPlayer.ts, and should be VideoPlayer.tsx, my bad.

0
On

What is video? You will have to import video.js along with React.js to use