blob: 4976dd7d47fc64401ca7e9c739fb0207ea0c917e (
plain)
1
2
3
4
5
6
7
8
|
/**
* Binding of the global jQuery variable for use within React.
*
* This should be used instead of '$', to address ESLint warnings relating to undefined global variables.
*/
const jQuery = window['$']
export default jQuery
|