UNPKG

hovertile

Version:

A port of Mary Lou's hover tiles to React

12 lines (10 loc) 271 B
import React, {Component, PropTypes} from "react"; export default class HoverContent extends Component { static propTypes = { children: PropTypes.node }; static ref = "TileHoverContent"; render() { return (<div {...this.props}>{this.props.children}</div>); } }