mobigrid-module 1.0.0 → 1.0.1
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/index.d.ts +2 -2
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.tsx +1 -1
- package/dist/index.tsx.map +1 -1
- package/package.json +1 -1
- package/src/index.tsx +3 -1
package/package.json
CHANGED
package/src/index.tsx
CHANGED
@@ -17,7 +17,7 @@ interface ContainerProps {
|
|
17
17
|
children?: React.ReactNode;
|
18
18
|
}
|
19
19
|
|
20
|
-
|
20
|
+
const MobigridModule = ({
|
21
21
|
configUrl,
|
22
22
|
preJsUrl,
|
23
23
|
itemsPerPage = ITEMS_PER_PAGE,
|
@@ -250,3 +250,5 @@ export default function ({
|
|
250
250
|
</div>
|
251
251
|
);
|
252
252
|
}
|
253
|
+
|
254
|
+
export default MobigridModule;
|