Location.js 558 B

12345678910111213141516
  1. /**
  2. * React Starter Kit (https://www.reactstarterkit.com/)
  3. *
  4. * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved.
  5. *
  6. * This source code is licensed under the MIT license found in the
  7. * LICENSE.txt file in the root directory of this source tree.
  8. */
  9. import createHistory from 'history/lib/createBrowserHistory';
  10. import createMemoryHistory from 'history/lib/createMemoryHistory';
  11. import useQueries from 'history/lib/useQueries';
  12. const location = useQueries(process.env.BROWSER ? createHistory : createMemoryHistory)();
  13. export default location;