import React, { Component } from 'react'; import {restController, RestControllerProps, RestFormLoader, SectionContent } from '../components'; import NetworkStatusForm from './NetworkStatusForm'; import { NETWORK_STATUS_ENDPOINT } from '../api'; import { NetworkStatus } from './types'; type NetworkStatusControllerProps = RestControllerProps; class NetworkStatusController extends Component { componentDidMount() { this.props.loadData(); } render() { return ( } /> ); } } export default restController(NETWORK_STATUS_ENDPOINT, NetworkStatusController);