# About

The hotel availability search form implemented as a React component

# Standalone demo

In the project directory

    $ npm install
    ...
    $ npm run build
    ...
    $ cd ./www && python -m SimpleHTTPServer 8080
    
Now open [http://localhost:8080/demo.html](http://localhost:8080/demo.html) in the browser.

# Auto-build on each JS change

    $ npm -g install watchify
    ...
    $ watchify ./demo.js -o ./www/bundle.js -v

That will update `www/bundle.js`, used in `www/demo.html`, automatically, when you edit the
JavaScript files in this project.
