Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 459 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 459 Bytes

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>
  );
}