()
| 43 | |
| 44 | class Page extends React.Component { |
| 45 | render() { |
| 46 | return ( |
| 47 | <Container className={'px-0 ' + this.props.className} style={this.props.style} fluid> |
| 48 | <Navbar key="page-nav" bg="light" className="mb-3"> |
| 49 | <Navbar.Brand>{ this.props.title }</Navbar.Brand> |
| 50 | {this.props.nav} |
| 51 | </Navbar> |
| 52 | <React.Fragment key="page-content"> |
| 53 | {this.props.children} |
| 54 | </React.Fragment> |
| 55 | </Container> |
| 56 | )} |
| 57 | } |
| 58 | |
| 59 | class TopNav extends React.Component { |
no outgoing calls
no test coverage detected