()
| 10 | const autoLogoutDurationInS = 30; |
| 11 | |
| 12 | function App() { |
| 13 | return ( |
| 14 | <ChakraProvider theme={theme}> |
| 15 | <ContextProvider> |
| 16 | <AppWithUser /> |
| 17 | </ContextProvider> |
| 18 | </ChakraProvider> |
| 19 | ); |
| 20 | } |
| 21 | |
| 22 | function AppWithUser() { |
| 23 | const { user, setUser } = useContext(UserContext); |
nothing calls this directly
no outgoing calls
no test coverage detected