Skip to content

Instantly share code, notes, and snippets.

@mxdi9i7
Created November 7, 2018 03:49
Show Gist options
  • Save mxdi9i7/f6bb0b3e99b2f5cc00f5a00f1570d3a7 to your computer and use it in GitHub Desktop.
Save mxdi9i7/f6bb0b3e99b2f5cc00f5a00f1570d3a7 to your computer and use it in GitHub Desktop.
Location component
import React, { Component } from 'react'
import { locations } from '../../utils/data'
export default class LocationPage extends Component {
render() {
return (
<div>
{
locations.map(location => (
<div>
{/* map your location information here */}
</div>
))
}
</div>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment