Created
November 18, 2017 15:51
-
-
Save sajithdilshan/0d1553fa29378dacdeb8bc69cf4f1520 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'; | |
| class Alice extends Component { | |
| render() { | |
| return ( | |
| <div> | |
| <h2> Hi, I am Alice </h2> | |
| </div> | |
| ); | |
| } | |
| } | |
| export default Alice; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment