aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/index.tsx
diff options
context:
space:
mode:
authorBrandon Millman <brandon@0xproject.com>2018-04-24 10:42:07 +0800
committerGitHub <noreply@github.com>2018-04-24 10:42:07 +0800
commit10a379077c551887bc41dc33197298540f28d7c6 (patch)
tree188eaa7ed365e5066477083cd233582e5ab830c1 /packages/website/ts/index.tsx
parentffd9b791003f4718a0dcc469e9806450c73200aa (diff)
parent941342cc2412d5dccfad8fc56fc5e36d3a0e6b1a (diff)
downloaddexon-sol-tools-10a379077c551887bc41dc33197298540f28d7c6.tar
dexon-sol-tools-10a379077c551887bc41dc33197298540f28d7c6.tar.gz
dexon-sol-tools-10a379077c551887bc41dc33197298540f28d7c6.tar.bz2
dexon-sol-tools-10a379077c551887bc41dc33197298540f28d7c6.tar.lz
dexon-sol-tools-10a379077c551887bc41dc33197298540f28d7c6.tar.xz
dexon-sol-tools-10a379077c551887bc41dc33197298540f28d7c6.tar.zst
dexon-sol-tools-10a379077c551887bc41dc33197298540f28d7c6.zip
Merge pull request #552 from 0xProject/refactor/website/legacy-portal
Rename Portal component to LegacyPortal
Diffstat (limited to 'packages/website/ts/index.tsx')
-rw-r--r--packages/website/ts/index.tsx4
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'),