import React, { Component } from "react"; import { Route, Link, Switch } from "react-router-dom"; import { Paper, Tabs, Tab} from '@material-ui/core'; import ChangePassword from "./ChangePassword.js"; import SpotifyLink from "./SpotifyLink.js"; import LastFM from "./LastFM.js"; class Settings extends Component { constructor(props){ super(props); this.state = { tab: 0 } this.handleChange = this.handleChange.bind(this); } handleChange(e, newValue){ this.setState({ tab: newValue }); } render() { return (
); } } export default Settings;