/* @flow */ import React, { Component } from 'react'; import { Toolbox } from '../../toolbox'; /** * Implements a React {@link Component} which represents the filmstrip on * Web/React. * * @extends Component */ export default class Filmstrip extends Component { static propTypes = { /** * Whether or not the toolbox should be displayed within the filmstrip. */ displayToolbox: React.PropTypes.bool }; /** * Implements React's {@link Component#render()}. * * @inheritdoc * @returns {ReactElement} */ render() { return (
{ this.props.displayToolbox ? : null }