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