| 68 | }; |
| 69 | |
| 70 | interface ContentProps { |
| 71 | status: string | number; |
| 72 | statusText: string; |
| 73 | headers: { |
| 74 | [ key: string ]: string; |
| 75 | }; |
| 76 | data: string; |
| 77 | } |
| 78 | // Axios fetch |
| 79 | const key = 'updatable'; |
| 80 | const [ content, setContent ] = useState<ContentProps>(); |
nothing calls this directly
no outgoing calls
no test coverage detected