mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 17:47:16 +00:00
25 lines
628 B
JavaScript
25 lines
628 B
JavaScript
import React from "react";
|
|
import { connect } from "react-redux";
|
|
import PlaylistMenu from "./PlaylistMenu";
|
|
|
|
/* eslint-disable no-alert */
|
|
|
|
const ListMenu = () => (
|
|
<PlaylistMenu id="playlist-list-menu">
|
|
<div
|
|
className="new-list"
|
|
onClick={() => alert("Not supported in Winamp2-js")}
|
|
/>
|
|
<div
|
|
className="save-list"
|
|
onClick={() => alert("Not supported in Winamp2-js")}
|
|
/>
|
|
<div
|
|
className="load-list"
|
|
onClick={() => alert("Not supported in Winamp2-js")}
|
|
/>
|
|
</PlaylistMenu>
|
|
);
|
|
|
|
const mapDispatchToProps = {};
|
|
export default connect(null, mapDispatchToProps)(ListMenu);
|