solid-navigator 0.2.1 → 0.2.2
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/dev.js +4 -1
- package/dist/dev.jsx +4 -1
- package/dist/index.js +4 -1
- package/dist/index.jsx +4 -1
- package/package.json +1 -1
package/dist/dev.js
CHANGED
|
@@ -304,7 +304,10 @@ var Outlet = (props) => {
|
|
|
304
304
|
}
|
|
305
305
|
return component2;
|
|
306
306
|
});
|
|
307
|
-
|
|
307
|
+
const MemodComponent = createMemo(() => {
|
|
308
|
+
return component()();
|
|
309
|
+
});
|
|
310
|
+
return MemodComponent;
|
|
308
311
|
};
|
|
309
312
|
var Route = (props) => {
|
|
310
313
|
const childRoutes = children(() => props.children).toArray;
|
package/dist/dev.jsx
CHANGED
package/dist/index.js
CHANGED
|
@@ -301,7 +301,10 @@ var Outlet = (props) => {
|
|
|
301
301
|
}
|
|
302
302
|
return component2;
|
|
303
303
|
});
|
|
304
|
-
|
|
304
|
+
const MemodComponent = createMemo(() => {
|
|
305
|
+
return component()();
|
|
306
|
+
});
|
|
307
|
+
return MemodComponent;
|
|
305
308
|
};
|
|
306
309
|
var Route = (props) => {
|
|
307
310
|
const childRoutes = children(() => props.children).toArray;
|
package/dist/index.jsx
CHANGED