# Debug --- ### Issues --- * [x] Regex error in template parsing  This could be an issue with multiline, except that multiline is working in content-genesis... This could also be an issue with content-genesis (likely problem). It's throwing on the path, which doesn't make a whole lot of sense... Hrm --- * [x] Component is not defined  --- --- ### Brainstorm --- > See [todo](./todo.md) for action items > See [this](https://stackoverflow.com/questions/29182244/convert-a-string-to-a-template-string) for relevant discussion **Template** ``` export const SAMPLE_TEMPLATE = ` //file: "sample.template.js" import React from 'react'; import PropTypes from 'prop-types'; export default class ${component} extends React.Component { static defaultProps = { place: 'holder' } static propTypes = { place: React.PropTypes.string.isRequired } state = { foo: 'bar' } constructor(props) { super(props); } render() { return (