stremio-web/src/common/useInLibrary.js
2019-11-18 11:05:37 +02:00

8 lines
290 B
JavaScript

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