Skip to content

Instantly share code, notes, and snippets.

@purushotamrai
Created February 14, 2019 17:00
Show Gist options
  • Save purushotamrai/b55798a5af1166d3ca0864067c932354 to your computer and use it in GitHub Desktop.
Save purushotamrai/b55798a5af1166d3ca0864067c932354 to your computer and use it in GitHub Desktop.
Getting Started with ReactJS and Drupal - Step 3 - DestinationItem.js
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