({ theme }: { theme: Theme })
| 7 | import type { Theme } from './theming'; |
| 8 | |
| 9 | const Header = ({ theme }: { theme: Theme }) => ( |
| 10 | <Container textColor={theme.textColor} background={theme.backgroundColor}> |
| 11 | @callstack/react-theme-provider |
| 12 | </Container> |
| 13 | ); |
| 14 | |
| 15 | const Container = styled.div` |
| 16 | box-sizing: border-box; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…