A react hook getting simplified representation of mitre att&ck
import { useMitreAttack } from 'use-mitre-attack';
const MyComponent() {
const { getTactics, getTechniques } = useMitreAttack();
return (
<div>
{getTactics()}
</div>
);
}