stremio-web/src/routes/Detail/useInLibrary.js
2019-08-28 13:49:22 +03:00

8 lines
297 B
JavaScript

const { useBinaryState } = require('stremio/common');
const useInLibrary = (id = '') => {
const [inLibrary, addToLibrary, removeFromLibrary, toggleInLibrary] = useBinaryState(false);
return [inLibrary, addToLibrary, removeFromLibrary, toggleInLibrary];
};
module.exports = useInLibrary;