Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
render() {
const { className, duplicant } = this.props;
const behavior = duplicant.getBehavior(MinionResumeBehavior);
if (!behavior) {
return (
No resume behavior exists on this duplicant. Jobs may not have been
initialized.
);
}
const rows = APTITUDE_NAMES.filter(x => !SKIP_APTITUDES.has(x)).map(
name => (
)
);
return (
<div>
<table>
<thead>
<tr>
<th>Aptitude Type</th></tr></thead></table></div>