use-mitre-attack
v1.3.1
Published
Simple representation of MITRE ATT&CK data
Downloads
9,631
Readme
use-mitre-attack
A react hook getting simplified representation of mitre att&ck
Usage
import { useMitreAttack } from 'use-mitre-attack';
const MyComponent() {
const { getTactics, getTechniques } = useMitreAttack();
return (
<div>
{getTactics()}
</div>
);
}