├── .babelrc ├── .eslintrc ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── src ├── components │ ├── Unsplash.js │ ├── Unsplash.test.js │ └── __snapshots__ │ │ └── Unsplash.test.js.snap └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marciobarrios/react-unsplash-wrapper/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marciobarrios/react-unsplash-wrapper/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | npm-debug.* 4 | dist/ 5 | .vscode/ 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marciobarrios/react-unsplash-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marciobarrios/react-unsplash-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marciobarrios/react-unsplash-wrapper/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Unsplash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marciobarrios/react-unsplash-wrapper/HEAD/src/components/Unsplash.js -------------------------------------------------------------------------------- /src/components/Unsplash.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marciobarrios/react-unsplash-wrapper/HEAD/src/components/Unsplash.test.js -------------------------------------------------------------------------------- /src/components/__snapshots__/Unsplash.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marciobarrios/react-unsplash-wrapper/HEAD/src/components/__snapshots__/Unsplash.test.js.snap -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marciobarrios/react-unsplash-wrapper/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marciobarrios/react-unsplash-wrapper/HEAD/yarn.lock --------------------------------------------------------------------------------