(currentPage: Page)
| 140 | }; |
| 141 | |
| 142 | const getFaviconUrl = (currentPage: Page): string => { |
| 143 | const library = getLibraryFromPage(currentPage); |
| 144 | switch (library) { |
| 145 | case 'react-aria': |
| 146 | return reactAriaFavicon; |
| 147 | default: |
| 148 | return rspFavicon; |
| 149 | } |
| 150 | }; |
| 151 | |
| 152 | let articleStyles = style({ |
| 153 | maxWidth: { |
no test coverage detected