|
|
@@ -2,7 +2,7 @@ import React, { Component } from 'react';
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
import { Context } from '../../../shared/Context';
|
|
|
-import StatusPlaceholder from './StatusPlaceholder';
|
|
|
+import ClusterPlaceholder from './ClusterPlaceholder';
|
|
|
|
|
|
type PropsType = {
|
|
|
setCurrentView: (x: string) => void,
|
|
|
@@ -12,13 +12,13 @@ type StateType = {
|
|
|
};
|
|
|
|
|
|
// Props in context to project section to trigger update on context change
|
|
|
-export default class StatusPlaceholderContainer extends Component<PropsType, StateType> {
|
|
|
+export default class ClusterPlaceholderContainer extends Component<PropsType, StateType> {
|
|
|
state = {
|
|
|
}
|
|
|
|
|
|
render() {
|
|
|
return (
|
|
|
- <StatusPlaceholder
|
|
|
+ <ClusterPlaceholder
|
|
|
setCurrentView={this.props.setCurrentView}
|
|
|
currentCluster={this.context.currentCluster}
|
|
|
/>
|
|
|
@@ -26,4 +26,4 @@ export default class StatusPlaceholderContainer extends Component<PropsType, Sta
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-StatusPlaceholderContainer.contextType = Context;
|
|
|
+ClusterPlaceholderContainer.contextType = Context;
|