├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .pacorc ├── README.md ├── examples ├── examples.html └── examples.js ├── package.json ├── react-spotify-player.png └── src └── SpotifyPlayer.jsx /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/react-spotify-player/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/react-spotify-player/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "airbnb" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/react-spotify-player/HEAD/.gitignore -------------------------------------------------------------------------------- /.pacorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/react-spotify-player/HEAD/.pacorc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/react-spotify-player/HEAD/README.md -------------------------------------------------------------------------------- /examples/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/react-spotify-player/HEAD/examples/examples.html -------------------------------------------------------------------------------- /examples/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/react-spotify-player/HEAD/examples/examples.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/react-spotify-player/HEAD/package.json -------------------------------------------------------------------------------- /react-spotify-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/react-spotify-player/HEAD/react-spotify-player.png -------------------------------------------------------------------------------- /src/SpotifyPlayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/react-spotify-player/HEAD/src/SpotifyPlayer.jsx --------------------------------------------------------------------------------