Even though I have applied propType validation, my editor throws an error on when passing boolean value for the hasvacancy prop. Here is what I'm seeing:
Error: 'SyntaxError: JSX value should be either an expression or a quoted JSX text'
I know I am passing a string type value for 'hasvacancy' prop but what do I need to do so I can pass a boolean or other data types via the prop.
import React from 'react';
import { render } from 'react-dom';
class VacancySign extends React.Component{
  render() {
    console.log('------------hasvacancy------', this.props.hasvacancy);
    if(this.props.hasvacancy) {
      return(
        <div>
          <p>Vacancy</p>
        </div>
      );
    } else {
      return(
        <div>
          <p>No-Vacancy</p>
        </div>);
    }
  }
}
VacancySign.propTypes ={
  hasvacancy: React.PropTypes.bool.isRequired
}
render(<VacancySign hasvacancy='false'/> , 
document.getElementById('root'));