nf-workflow-ui-5
Version:
Workflow User Interface
22 lines (18 loc) • 450 B
JavaScript
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"> </div>
</Jumbotron>
);
}
}
export default Introduction;