Last active
September 17, 2017 01:13
-
-
Save chnbohwr/0a52b7e379b79e9ccbef7d79feb36312 to your computer and use it in GitHub Desktop.
This file contains hidden or 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, { Component } from 'react'; | |
| export default class Home extends Component { | |
| componentDidMount(){ | |
| // execute api here | |
| } | |
| render() { | |
| return ( | |
| <div id="pageHome"> | |
| hi this is home page | |
| </div> | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment