({ id, className, children }: Props)
| 11 | } |
| 12 | |
| 13 | function StickyHeader({ id, className, children }: Props) { |
| 14 | return ( |
| 15 | <div id={id} className={classNames(styles.header, className)}> |
| 16 | {children} |
| 17 | </div> |
| 18 | ); |
| 19 | } |
| 20 | |
| 21 | StickyHeader.Title = Title; |
| 22 | StickyHeader.Subtitle = Subtitle; |
nothing calls this directly
no outgoing calls
no test coverage detected