mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-01-11 22:40:31 +00:00
7 lines
174 B
JavaScript
7 lines
174 B
JavaScript
const React = require('react');
|
|
|
|
const FocusableContext = React.createContext(false);
|
|
|
|
FocusableContext.displayName = 'FocusableContext';
|
|
|
|
module.exports = FocusableContext;
|