The javascript for the examples gets put into js/example//.js instead of the actual example directories.
There's a conflicting import in tutorial.purs from Data.Array and React.Dom since they both contain a 'span' function. I solved this locally by just qualifiing the import of Dom. It might be less code to qualify Data.Array instead.
Once that's solved, the submit button fails to do anything and raises "Uncaught TypeError: Cannot read property 'refs' of undefined" from the line var authors = this.refs.author.getDOMNode.trim(). Couldn't figure out how to fix this.
The javascript for the examples gets put into js/example//.js instead of the actual example directories.
There's a conflicting import in tutorial.purs from Data.Array and React.Dom since they both contain a 'span' function. I solved this locally by just qualifiing the import of Dom. It might be less code to qualify Data.Array instead.
Once that's solved, the submit button fails to do anything and raises "Uncaught TypeError: Cannot read property 'refs' of undefined" from the line
var authors = this.refs.author.getDOMNode.trim(). Couldn't figure out how to fix this.