Created
September 12, 2018 18:29
-
-
Save gate5th/c60d7ce4332248d46ac115a5708bb2c9 to your computer and use it in GitHub Desktop.
oldschoolshuffle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//ConnectSpotify.js | |
import React, { Component } from 'react'; | |
import './ConnectSpotify.css'; | |
import * as SpotifyFunctions from '../spotifyFunctions.js' | |
class ConnectSpotify extends Component { | |
render() { | |
return ( | |
<div className="ConnectSpotify"> | |
<a href={SpotifyFunctions.redirectUrlToSpotifyForLogin()}> | |
<button>Connect to Spotify</button> | |
</a> | |
</div> | |
); | |
} | |
} | |
export default ConnectSpotify; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment