summaryrefslogtreecommitdiff
path: root/src/util/jquery.js
blob: 12a64fc67cbbe5ccc2ee5bb68203341fa01e7d42 (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;