applications.js 497 Bytes
import React from 'react'

export default class Applications extends React.Component {
  state = {   
    theHeight: (window.innerHeight || document.documentElement.clientHeight) - 200
  }
  

  render () {    
    return (
      <div className='dictBg'>
        <div style={{padding :20, background:'#fff' , minHeight:200}} >
        <iframe style={{border:0,width:"100%", minHeight: this.state.theHeight,}} src="http://192.168.0.103:9511/#/applications"/>
        </div>
      </div>
    )
  }
}