News feed demo in ReactJS for a GTWebDev presentation on ReactJS.
Design derived from regular HTML and CSS from here.
- Run
git clone https://github.com/gt-webdev/react-newsfeed.git
in your Terminal. cd
into the directory.- Run
python -m SimpleHTTPServer
and navigate tohttp://localhost:8000/index.html
in your browser.
Step 3 is necessary since we are using the in-browser JSX transform (see here), and the JSX transformer tries to load the source using AJAX. More details here.