├── .babelrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── package.json ├── src ├── System.js └── index.js └── test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/system-components/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | dist 3 | coverage 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | coverage 3 | .babelrc 4 | src 5 | test.js 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/system-components/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/system-components/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/system-components/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/system-components/HEAD/package.json -------------------------------------------------------------------------------- /src/System.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/system-components/HEAD/src/System.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/system-components/HEAD/src/index.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/system-components/HEAD/test.js --------------------------------------------------------------------------------