| 1 | import * as React from 'react'; |
| 2 | |
| 3 | export interface SuspensePerfProps { |
| 4 | children: React.ReactNode; |
| 5 | traceId: string; |
| 6 | fallback: React.ReactNode; |
| 7 | } |
| 8 | |
| 9 | export function SuspenseWithPerf({ children, traceId, fallback }: SuspensePerfProps): JSX.Element { |
| 10 | // TODO: Should this import firebase/performance? |
nothing calls this directly
no outgoing calls
no test coverage detected