From 6dd8427c205a9219bdc81997e9ba8de73159d8ca Mon Sep 17 00:00:00 2001 From: Jim Date: Mon, 30 Nov 2015 09:34:15 -0800 Subject: [PATCH] Merge pull request #5564 from jackiewung/master Fix file reference typo in starter (cherry picked from commit 940a75b1fe10286bb75f7aa645fdc9669b8a7418) --- starter/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starter/README.md b/starter/README.md index c07140c5a6..372ca4887a 100644 --- a/starter/README.md +++ b/starter/README.md @@ -6,6 +6,6 @@ To begin, check out the `examples/` directory for a bunch of examples, or check In some browsers our examples won't work from the local file system; run `python -m SimpleHTTPServer` and visit `http://localhost:8000/` to view them. -Want to start your own app? Just copy `examples/basic-jsx-external` and start hacking! Remember: before launching you'll want to precompile your JSX code as we do in `examples/basic-jsx-precompiled`; this requires doing `npm install -g react-tools` and then running our `jsx` tool. See [Getting Started](https://facebook.github.io/react/docs/getting-started.html) for more information. +Want to start your own app? Just copy `examples/basic-jsx-external` and start hacking! Remember: before launching you'll want to precompile your JSX code as we do in `examples/basic-jsx-precompile`; this requires doing `npm install -g react-tools` and then running our `jsx` tool. See [Getting Started](https://facebook.github.io/react/docs/getting-started.html) for more information. Happy Hacking!