implements first attempt of unlocated bars

needs profiling and better calculated styles
This commit is contained in:
Lachlan Kermode
2020-02-24 08:11:59 +13:00
parent afc84e61ac
commit 958afb6a41
9 changed files with 130 additions and 47 deletions

View File

@@ -0,0 +1,21 @@
import React from 'react'
export default ({
category,
events,
x,
y,
onSelect,
styleProps,
extraRender
}) => (
<rect
onClick={onSelect}
className='event'
x={x}
y={y}
style={styleProps}
width={4}
height={55}
/>
)