This commit is contained in:
2024-05-14 17:50:06 -04:00
parent 9a8efb5418
commit 2e57253ac0
13 changed files with 208 additions and 58 deletions

View File

@ -12,7 +12,7 @@ export default class BrowseRoute extends Component {
render() {
return (
<div className="container">
<NavBar />
<NavBar socket={this.props.socket} />
<BrowseComponent socket={this.props.socket} />
</div>
);

View File

@ -12,7 +12,7 @@ export default class CableDetailRoute extends Component {
render() {
return (
<div className="container">
<NavBar />
<NavBar socket={this.props.socket} />
<CableDetailComponent socket={this.props.socket} />
</div>
);

View File

@ -12,7 +12,7 @@ export default class MapRoute extends Component {
render() {
return (
<div className="container">
<NavBar />
<NavBar socket={this.props.socket} />
<MapComponent socket={this.props.socket} />
</div>
);

View File

@ -12,7 +12,7 @@ export default class SettingsRoute extends Component {
render() {
return (
<div className="container">
<NavBar />
<NavBar socket={this.props.socket} />
<SettingsComponent socket={this.props.socket} />
</div>
);

View File

@ -12,7 +12,7 @@ export default class StatisticsRoute extends Component {
render() {
return (
<div className="container">
<NavBar />
<NavBar socket={this.props.socket} />
<StatisticsComponent socketHandler={this.props.socket} />
</div>
);