(expand)
| 29 | }; |
| 30 | |
| 31 | const getExpandClass = (expand) => { |
| 32 | if (expand === false) { |
| 33 | return false; |
| 34 | } |
| 35 | if (expand === true || expand === 'xs') { |
| 36 | return 'navbar-expand'; |
| 37 | } |
| 38 | |
| 39 | return `navbar-expand-${expand}`; |
| 40 | }; |
| 41 | |
| 42 | function Navbar(props) { |
| 43 | const { |
no outgoing calls
no test coverage detected
searching dependent graphs…