Created
February 14, 2019 17:00
-
-
Save purushotamrai/b55798a5af1166d3ca0864067c932354 to your computer and use it in GitHub Desktop.
Getting Started with ReactJS and Drupal - Step 3 - DestinationItem.js
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'; | |
export default class DestinationItem extends React.Component { | |
render() { | |
return ( | |
<div> | |
<h2>Travel Destination Title</h2> | |
<div>Travel Destination Description goes here</div> | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment