mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
Router utility functions moved to root folder
This commit is contained in:
parent
ad5d04c7d3
commit
ca2da7b289
4 changed files with 3 additions and 3 deletions
|
|
@ -3,9 +3,9 @@ const PropTypes = require('prop-types');
|
|||
const ReactIs = require('react-is');
|
||||
const UrlUtils = require('url');
|
||||
const { RoutesContainerProvider } = require('../RoutesContainerContext');
|
||||
const queryParamsForQuery = require('./queryParamsForQuery');
|
||||
const routeConfigForPath = require('./routeConfigForPath');
|
||||
const urlParamsForPath = require('./urlParamsForPath');
|
||||
const queryParamsForQuery = require('../queryParamsForQuery');
|
||||
const routeConfigForPath = require('../routeConfigForPath');
|
||||
const urlParamsForPath = require('../urlParamsForPath');
|
||||
const Route = require('./Route');
|
||||
|
||||
const Router = ({ onPathNotMatch, ...props }) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue