This is React Hello Component

Hello, React props

It is 11:27:00 AM.


<ngui-react 
        #reactHello="ngui-react"
        [reactComponent]="Hello"
        [reactProps]="{name:'React props'}"></ngui-react>
      <hr/>
      <button (click)="this.reactHello.reactInstance.tick()">Update time by executing React instance function</button>
      <button (click)="this.reactHello.reactInstance.updateButton.click()">Update time by triggering React element event</button>
      <button (click)="this.reactHello.reactInstance.setState({date: newDate})">Update time by setting state of React instance</button>