import { Component } from 'inferno'; import { Button, Col, Form, FormGroup, Input, Label, Row, } from '../../components/Bootstrap' export class FilmAddView extends Component { constructor (props) { super (props); this.state = { }; } render () { return (
) } }