Last active
November 11, 2018 15:01
-
-
Save rocksinghajay/0a40ea3bea258a6aa7510ef1bb8b0781 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 from 'react'; | |
| const presentationalComponent = (props) => ( | |
| <div> | |
| <h2> | |
| This is a example of Presentational Component | |
| </h2> | |
| </div> | |
| ); | |
| export default presentationalComponent; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment