## Usage This package contains Performance APIs, distributed as part of the Kepler Performance Module (kepler-performance-api) npm package. See [this page](https://developer.amazon.com/docs/kepler/ks-measure-app-kpis.html#prerequisites) for more context.
npm install @amazon-devices/kepler-performance-apiTo use a supported Performance API:
1. Add npm package as a dependency in your package.json:
```
npm install @amazon-devices/kepler-performance-api
2. Import kepler-performance-api:
``
import { useReportFullyDrawn } from '@amazon-devices/kepler-performance-api';
3. Refer to API signature and invoke API appropriately, example
` ``
const rfdCallback = useReportFullyDrawn();
useEffect(() => {
rfdCallback();
}, [rfdCallback]);
More details can be found here.