({s}: StoreProp)
| 6 | import {Header} from './Header.tsx'; |
| 7 | |
| 8 | export const Panel = ({s}: StoreProp) => { |
| 9 | const position = useValue(POSITION_VALUE, s) ?? 1; |
| 10 | |
| 11 | return useValue(OPEN_VALUE, s) ? ( |
| 12 | <main data-position={position}> |
| 13 | <Header s={s} /> |
| 14 | <ErrorBoundary> |
| 15 | <Body s={s} /> |
| 16 | </ErrorBoundary> |
| 17 | </main> |
| 18 | ) : null; |
| 19 | }; |
nothing calls this directly
no test coverage detected
searching dependent graphs…