import React from 'react'
export default ({
highlights,
events,
x,
y,
width,
height,
onSelect,
styleProps,
extraRender
}) => {
if (highlights.length === 0) {
return (
)
}
const sectionHeight = height / highlights.length
return (
{highlights.map((h, idx) => (
))}
)
}