()
| 46 | } |
| 47 | |
| 48 | export function Functions() { |
| 49 | const app = useFirebaseApp(); |
| 50 | |
| 51 | return ( |
| 52 | <FunctionsProvider sdk={getFunctions(app)}> |
| 53 | <CardSection title="Call a cloud function"> |
| 54 | <UpperCaser /> |
| 55 | </CardSection> |
| 56 | <CardSection title="Call a function on render"> |
| 57 | <UpperCaserOnRender /> |
| 58 | </CardSection> |
| 59 | </FunctionsProvider> |
| 60 | ); |
| 61 | } |
nothing calls this directly
no test coverage detected