UNPKG

rizzo-next

Version:

The next generation of Lonely Planet's style guide and pattern library.

15 lines (11 loc) 233 B
import React from "react"; import Item from "./item.jsx"; export default class PinView extends React.Component { render() { let pin = this.props.pin; pin.onMap = true; return ( <Item item={pin} /> ); } }