diff --git a/common/app/routes/Hikes/components/Lecture.jsx b/common/app/routes/Hikes/components/Lecture.jsx index d5a7571834..d59622df3d 100644 --- a/common/app/routes/Hikes/components/Lecture.jsx +++ b/common/app/routes/Hikes/components/Lecture.jsx @@ -1,5 +1,5 @@ import React, { PropTypes } from 'react'; -import { Col, Row, Panel } from 'react-bootstrap'; +import { Button, Col, Row, Panel } from 'react-bootstrap'; import { Navigation } from 'react-router'; import { contain } from 'thundercats-react'; import stampit from 'react-stampit'; @@ -50,6 +50,11 @@ export default contain( challengeSeed = ['1'], description = [] } = this.props.currentHike; + const transcript = description.map(line => { + return ( +

{ line }

+ ); + }); const [ id ] = challengeSeed; @@ -68,9 +73,17 @@ export default contain(

- { description.join('\n') } + { transcript }

+ + +