nf-workflow-ui-5
Version:
Workflow User Interface
26 lines (23 loc) • 589 B
JavaScript
import React, { Component } from 'react';
const Introduction = () => (
<div className="ui-content">
<h1>Help & Documentation</h1>
<h4>User Guide</h4>
<ul>
<li>
<a href="http://netflix.github.io/conductor/" target="_new">
https://netflix.github.io/conductor/
</a>
</li>
</ul>
<h4>Frequently Asked Questions</h4>
<ul>
<li>
<a href="http://netflix.github.io/conductor/" target="_new">
https://netflix.github.io/conductor/faq/
</a>
</li>
</ul>
</div>
);
export default Introduction;