import React from 'react'; import PropTypes from 'prop-types'; import { Icon, NgIf } from './'; import './video.scss'; export class Video extends React.Component { constructor(props){ super(props); } render(){ return (
); } } //