import React from "react"; import PlaylistMenu from "./PlaylistMenu"; import * as Actions from "../../actionCreators"; import { useActionCreator } from "../../hooks"; export default function SelectionMenu() { const invert = useActionCreator(Actions.invertSelection); const zero = useActionCreator(Actions.selectZero); const all = useActionCreator(Actions.selectAll); return (
); }