index.js 189 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
/* @flow */
import { inject, uninject } from './overlay';

inject();
if (module.hot && typeof module.hot.dispose === 'function') {
  module.hot.dispose(function() {
    uninject();
  });
}