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