Many thanks to http://taitems.github.io/jQuery.Gantt/
demo based React Static Boilerplate
import Gantt from '../components/react_gantt';
...
return (<Gantt {...{
start: new Date(1970, 0, 1),
stop: new Date(),
data:[ {
"name": "Sprint 0",
"desc": "Analysis",
"values": [{
"from": 1320192000000,
"to": 1322401600000,
"label": "Requirement Gathering",
"customClass": "ganttRed"
}]
]
}}
/>);