UNPKG

hovertile

Version:

A port of Mary Lou's hover tiles to React

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