diff --git a/js/actionTypes.js b/js/actionTypes.js index 262388ce..480f91bb 100644 --- a/js/actionTypes.js +++ b/js/actionTypes.js @@ -49,3 +49,4 @@ export const PLAYLIST_SIZE_CHANGED = "PLAYLIST_SIZE_CHANGED"; export const REMOVE_ALL_TRACKS = "REMOVE_ALL_TRACKS"; export const CROP_TRACKS = "CROP_TRACKS"; export const REMOVE_SELECTED_TRACKS = "REMOVE_SELECTED_TRACKS"; +export const FILE_INFO = "FILE_INFO"; diff --git a/js/components/PlaylistWindow/MiscMenu.js b/js/components/PlaylistWindow/MiscMenu.js new file mode 100644 index 00000000..39cc2edd --- /dev/null +++ b/js/components/PlaylistWindow/MiscMenu.js @@ -0,0 +1,19 @@ +import React from "react"; +import { connect } from "react-redux"; +import { FILE_INFO } from "../../actionTypes"; + +const MiscMenu = props => ( +
+); + +const mapDispatchToProps = { + fileInfo: () => ({ type: FILE_INFO }) +}; +export default connect(null, mapDispatchToProps)(MiscMenu);