UNPKG

423 BJavaScriptView Raw
1import { h } from '@stencil/core';
2import { createProviderConsumer } from '@stencil/state-tunnel';
3export default createProviderConsumer({
4 historyType: 'browser',
5 location: {
6 pathname: '',
7 query: {},
8 key: ''
9 },
10 titleSuffix: '',
11 root: '/',
12 routeViewsUpdated: () => { }
13}, (subscribe, child) => (h("context-consumer", { subscribe: subscribe, renderer: child })));