aboutsummaryrefslogtreecommitdiff
path: root/src/marker.js
blob: 91a534f11a2da9ec5a82e9e479e6d17166f538f1 (plain) (blame)
1
2
3
4
5
6
7
import React from 'react';

export default class Marker extends React.PureComponent {
    render() {
        return this.props.children || null
    }
}