@empjs/cdn-react-wouter 0.0.4 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react.d.ts +7 -0
- package/dist/react.development.umd.js +16898 -1
- package/dist/react.development.umd.js.map +1 -0
- package/dist/react.production.umd.js +1 -1
- package/dist/react.production.umd.js.map +1 -0
- package/dist/reactRouter.d.ts +18 -0
- package/dist/reactRouter.development.umd.js +17687 -1
- package/dist/reactRouter.development.umd.js.map +1 -0
- package/dist/reactRouter.production.umd.js +1 -1
- package/dist/reactRouter.production.umd.js.map +1 -0
- package/package.json +3 -2
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as wouter_use_browser_location from 'wouter/use-browser-location';
|
|
2
|
+
import * as wouter from 'wouter';
|
|
3
|
+
export { wouter as Wouter };
|
|
4
|
+
import { useHashLocation } from 'wouter/use-hash-location';
|
|
5
|
+
import * as react from 'react';
|
|
6
|
+
export { react as React };
|
|
7
|
+
import * as reactDom from 'react-dom';
|
|
8
|
+
export { reactDom as ReactDOM };
|
|
9
|
+
export { jsxDEV } from 'react/jsx-dev-runtime';
|
|
10
|
+
export * from 'react/jsx-runtime';
|
|
11
|
+
export * from 'react-dom/client';
|
|
12
|
+
|
|
13
|
+
declare const WouterLocation: {
|
|
14
|
+
useBrowserLocation: wouter_use_browser_location.BrowserLocationHook;
|
|
15
|
+
useHashLocation: typeof useHashLocation;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { WouterLocation };
|