├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── postinstall.js ├── public ├── favicon.ico └── index.html ├── screenshot.png ├── src ├── base.css ├── demos │ ├── Demo1.js │ ├── Demo2.js │ └── Effects.js └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.cache 3 | package-lock.json 4 | /build -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/postinstall.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/public/index.html -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/src/base.css -------------------------------------------------------------------------------- /src/demos/Demo1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/src/demos/Demo1.js -------------------------------------------------------------------------------- /src/demos/Demo2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/src/demos/Demo2.js -------------------------------------------------------------------------------- /src/demos/Effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/src/demos/Effects.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrossman/breathing-dots-tutorial/HEAD/yarn.lock --------------------------------------------------------------------------------