| 2 | import { useEffect, useState } from "react"; |
| 3 | |
| 4 | interface FeatureFlag { |
| 5 | name: string; |
| 6 | enabled: boolean; |
| 7 | description: string; |
| 8 | flagKey: string; |
| 9 | } |
| 10 | |
| 11 | const defaultFlags: FeatureFlag[] = [ |
| 12 | { |
nothing calls this directly
no outgoing calls
no test coverage detected