()
| 6 | import Theme from './Theme'; |
| 7 | |
| 8 | function LoadingIndicator() { |
| 9 | let theme = useContext(Theme); |
| 10 | return <div className={theme + '-loading'}>Loading...</div>; |
| 11 | } |
| 12 | |
| 13 | function Content() { |
| 14 | let [CurrentPage, switchPage] = useState(() => Page); |
nothing calls this directly
no test coverage detected