Skip to content

Instantly share code, notes, and snippets.

@sajithdilshan
Created November 19, 2017 11:58
Show Gist options
  • Save sajithdilshan/fbe7d5ecdf4ec0d70c7eb3ea6922ba9b to your computer and use it in GitHub Desktop.
Save sajithdilshan/fbe7d5ecdf4ec0d70c7eb3ea6922ba9b to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import Alice from './Alice';
class App extends Component {
constructor() {
super();
this.state = {
greeting: "Hello World!"
}
}
render() {
return (
<div className="greeting">
<h1> {this.state.greeting} </h1>
<Alice/>
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment