use-mitre-attack
Version:
Simple representation of MITRE ATT&CK data
26 lines (19 loc) • 459 B
Markdown
<p align="center">
<a href="http://logz.io">
<img height="150px" src="https://logz.io/wp-content/uploads/2017/06/new-logzio-logo.png">
</a>
</p>
A react hook getting simplified representation of mitre att&ck
```javascript
import { useMitreAttack } from 'use-mitre-attack';
const MyComponent() {
const { getTactics, getTechniques } = useMitreAttack();
return (
<div>
{getTactics()}
</div>
);
}
```