Files
ukraine-timemap/src/components/presentational/Timeline/DatetimeDot.js
Lachlan Kermode 958afb6a41 implements first attempt of unlocated bars
needs profiling and better calculated styles
2020-06-18 10:30:25 +02:00

21 lines
242 B
JavaScript

import React from 'react'
export default ({
category,
events,
x,
y,
onSelect,
styleProps,
extraRender
}) => (
<circle
onClick={onSelect}
className='event'
cx={x}
cy={y}
style={styleProps}
r={5}
/>
)