1.3.1 • Published 2 years ago
use-mitre-attack v1.3.1
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>
  );
}