import React, { Component } from 'react'; import Images from '../../assets/Images'; class Maintenance extends Component { constructor(props) { super(props) this.state = { width: 0, height: 0 } } getWindowDimensions() { const { innerWidth: width, innerHeight: height } = window; this.setState({ width, height }) } render() { return (
{'TIA

TIA 4.0 is down for Maintenance!
Thank you for your patience, we expect to be back shortly.

We apologize for any inconvenience.
For more information, please contact our email : tia4.0@triputra-group.com.

); } } export default Maintenance;