mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-12 13:28:36 +03:00
21 lines
242 B
JavaScript
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}
|
|
/>
|
|
)
|