()
| 26 | ]; |
| 27 | |
| 28 | const signOut = async () => { |
| 29 | await fetch(AUTH_PATHS.logout, { method: "POST" }); |
| 30 | trackEvent("signed_out"); |
| 31 | window.location.href = "/"; |
| 32 | }; |
| 33 | |
| 34 | export function Shell(props: { readonly content?: React.ReactNode }) { |
| 35 | return ( |
nothing calls this directly
no test coverage detected