diff options
author | Fabio Berger <me@fabioberger.com> | 2018-04-24 12:01:15 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-04-24 12:01:15 +0800 |
commit | 2896110d4d1d513b771aa26b1cfca7bd5fc12b3e (patch) | |
tree | 83eb6c8db234a23e582b3f985b410f7c46f2547e /packages/website/ts/index.tsx | |
parent | d05b175e0440a6ccd66b1175c973b3e1445e06f7 (diff) | |
parent | 10a379077c551887bc41dc33197298540f28d7c6 (diff) | |
download | dexon-0x-contracts-2896110d4d1d513b771aa26b1cfca7bd5fc12b3e.tar dexon-0x-contracts-2896110d4d1d513b771aa26b1cfca7bd5fc12b3e.tar.gz dexon-0x-contracts-2896110d4d1d513b771aa26b1cfca7bd5fc12b3e.tar.bz2 dexon-0x-contracts-2896110d4d1d513b771aa26b1cfca7bd5fc12b3e.tar.lz dexon-0x-contracts-2896110d4d1d513b771aa26b1cfca7bd5fc12b3e.tar.xz dexon-0x-contracts-2896110d4d1d513b771aa26b1cfca7bd5fc12b3e.tar.zst dexon-0x-contracts-2896110d4d1d513b771aa26b1cfca7bd5fc12b3e.zip |
Merge branch 'development' of github.com:0xProject/0x-monorepo into development
* 'development' of github.com:0xProject/0x-monorepo:
Fix lazy load component name
Rename Portal and PortalMenu components to LegacyPortal and LegacyPortalMenu
Diffstat (limited to 'packages/website/ts/index.tsx')
-rw-r--r-- | packages/website/ts/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/website/ts/index.tsx b/packages/website/ts/index.tsx index 6b347145f..d99187151 100644 --- a/packages/website/ts/index.tsx +++ b/packages/website/ts/index.tsx @@ -34,8 +34,8 @@ import 'less/all.less'; // cause we only want to import the module when the user navigates to the page. // At the same time webpack statically parses for System.import() to determine bundle chunk split points // so each lazy import needs it's own `System.import()` declaration. -const LazyPortal = createLazyComponent('Portal', async () => - System.import<any>(/* webpackChunkName: "portal" */ 'ts/containers/portal'), +const LazyPortal = createLazyComponent('LegacyPortal', async () => + System.import<any>(/* webpackChunkName: "legacyPortal" */ 'ts/containers/legacy_portal'), ); const LazyZeroExJSDocumentation = createLazyComponent('Documentation', async () => System.import<any>(/* webpackChunkName: "zeroExDocs" */ 'ts/containers/zero_ex_js_documentation'), |