Created
February 10, 2020 00:05
-
-
Save EnetoJara/b0644ea36150e4d2c307762f0f8c25d6 to your computer and use it in GitHub Desktop.
This Component will be the Parent Component, the main "window".
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import logo from "./logo.svg"; | |
import { WindowOpener } from "./window-opener"; | |
export class Home extends React.Component { | |
constructor (props) { | |
super(props); | |
this.state = { | |
message: "" | |
} | |
this.sonResponse = this.sonResponse.bind(this); | |
} | |
sonResponse (err, res) { | |
if (err) { | |
this.setState({ message: res }) | |
} | |
this.setState({ message: res }) | |
} | |
render () { | |
const {message} = this.state; | |
return ( | |
<div> | |
<header className="App-header"> | |
<img src={logo} className="App-logo" alt="logo" /> | |
<p> | |
Edit <code>src/App.js</code> and save to reload. | |
</p> | |
<a | |
className="App-link" | |
href="https://reactjs.org" | |
target="_blank" | |
rel="noopener noreferrer" | |
> | |
{message} | |
</a> | |
<WindowOpener | |
url="http://localhost:3000/son" | |
bridge={this.sonResponse} | |
> | |
Open Browser | |
</WindowOpener> | |
</header> | |
</div> | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment