]> git.cworth.org Git - puzzless/commit
Add react app boilerplate master
authorCarl Worth <cworth@cworth.org>
Sun, 1 Apr 2018 17:29:14 +0000 (10:29 -0700)
committerCarl Worth <cworth@cworth.org>
Sun, 1 Apr 2018 17:42:13 +0000 (10:42 -0700)
commit71f81b4555b0830ddf20f5ea901b0d4b34be253c
treed43a8a6a9aa0e76966a8990940aa74762a5dd82b
parent5a6fdde528dcff44c86f73709ed54916a769222e
Add react app boilerplate

This content was created automatically by running the following
command in an empty directory:

npx create-react-app puzzless

and then copying all of the files created (other than
package-lock.json) in the puzzless directory into the current
directory.

Apparently the creete-react-app code comes from:

https://github.com/facebook/create-react-app

but I have no idea which version was actually used here.

Apparently this sample react app can be started by running either of
the following commands:

npm start

or:

        yarn start

And then pointing a browser at localhost:3000 (which apparently the
above commands also do?).
13 files changed:
.gitignore [new file with mode: 0644]
README.md [new file with mode: 0644]
package.json [new file with mode: 0644]
public/favicon.ico [new file with mode: 0644]
public/index.html [new file with mode: 0644]
public/manifest.json [new file with mode: 0644]
src/App.css [new file with mode: 0644]
src/App.js [new file with mode: 0644]
src/App.test.js [new file with mode: 0644]
src/index.css [new file with mode: 0644]
src/index.js [new file with mode: 0644]
src/logo.svg [new file with mode: 0644]
src/registerServiceWorker.js [new file with mode: 0644]