()
| 28 | } |
| 29 | |
| 30 | function PcLayout() { |
| 31 | const { themeLayout } = useSettings(); |
| 32 | |
| 33 | if (themeLayout === ThemeLayout.Horizontal) return <PcHorizontalLayout />; |
| 34 | return <PcVerticalLayout />; |
| 35 | } |
| 36 | |
| 37 | function PcHorizontalLayout() { |
| 38 | const navData = useFilteredNavData(); |
nothing calls this directly
no test coverage detected