UNPKG

use-mitre-attack

Version:

Simple representation of MITRE ATT&CK data

26 lines (19 loc) 459 B
<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> # use-mitre-attack A react hook getting simplified representation of mitre att&ck ## Usage ```javascript import { useMitreAttack } from 'use-mitre-attack'; const MyComponent() { const { getTactics, getTechniques } = useMitreAttack(); return ( <div> {getTactics()} </div> ); } ```