├── .babelrc ├── .changeset ├── README.md ├── config.json └── fluffy-toys-lay.md ├── .eslintrc ├── .gitignore ├── .npmignore ├── .whitesource ├── CODEOWNERS ├── README.md ├── package.json ├── src └── index.js └── test └── index.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "react"] 3 | } -------------------------------------------------------------------------------- /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socialtables/react-image-fallback/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socialtables/react-image-fallback/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.changeset/fluffy-toys-lay.md: -------------------------------------------------------------------------------- 1 | --- 2 | "react-image-fallback": minor 3 | --- 4 | 5 | Add changesets 6 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socialtables/react-image-fallback/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socialtables/react-image-fallback/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socialtables/react-image-fallback/HEAD/.npmignore -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socialtables/react-image-fallback/HEAD/.whitesource -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @socialtables/codeowners-stellar 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socialtables/react-image-fallback/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socialtables/react-image-fallback/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socialtables/react-image-fallback/HEAD/src/index.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socialtables/react-image-fallback/HEAD/test/index.js --------------------------------------------------------------------------------