├── .babelrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── .travis.yml ├── jest.config.js ├── license ├── package.json ├── readme.md └── src ├── __tests__ ├── __snapshots__ │ └── index.js.snap └── index.js └── index.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajoslin/react-stepper-primitive/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajoslin/react-stepper-primitive/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | src -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajoslin/react-stepper-primitive/HEAD/.travis.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajoslin/react-stepper-primitive/HEAD/jest.config.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajoslin/react-stepper-primitive/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajoslin/react-stepper-primitive/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajoslin/react-stepper-primitive/HEAD/readme.md -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/index.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajoslin/react-stepper-primitive/HEAD/src/__tests__/__snapshots__/index.js.snap -------------------------------------------------------------------------------- /src/__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajoslin/react-stepper-primitive/HEAD/src/__tests__/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajoslin/react-stepper-primitive/HEAD/src/index.js --------------------------------------------------------------------------------