UNPKG

nf-workflow-ui-5

Version:
22 lines (18 loc) 450 B
import { Jumbotron } from 'react-bootstrap'; import React, { Component } from 'react'; class Introduction extends Component { constructor(props) { super(props); } render() { return ( <Jumbotron className="jumbotron"> <div className="row"> <img src="/images/conductor.png"></img> </div> <div className="row">&nbsp;</div> </Jumbotron> ); } } export default Introduction;