import React from "react"; import { connect } from "react-redux"; import { removeAllTracks } from "../../actionCreators"; import PlaylistMenu from "./PlaylistMenu"; /* eslint-disable no-alert */ const ListMenu = props => (
alert("Not supported in Webamp")} />
alert("Not supported in Webamp")} /> ); const mapDispatchToProps = { removeAllTracks }; export default connect(null, mapDispatchToProps)(ListMenu);