From 05206d70c9dfbf03dd623bea80011389f784b129 Mon Sep 17 00:00:00 2001 From: Josh Kramer Date: Mon, 25 Nov 2019 04:18:53 -0500 Subject: [PATCH] Remove dynamic import proposal text (#2564) Dynamic imports have reached stage 4 and are now part of ECMAScript. --- content/docs/code-splitting.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/content/docs/code-splitting.md b/content/docs/code-splitting.md index d6a9e9be..e58eb0df 100644 --- a/content/docs/code-splitting.md +++ b/content/docs/code-splitting.md @@ -94,13 +94,6 @@ import("./math").then(math => { }); ``` -> Note: -> -> The dynamic `import()` syntax is a ECMAScript (JavaScript) -> [proposal](https://github.com/tc39/proposal-dynamic-import) not currently -> part of the language standard. It is expected to be accepted in the -> near future. - When Webpack comes across this syntax, it automatically starts code-splitting your app. If you're using Create React App, this is already configured for you and you can [start using it](https://facebook.github.io/create-react-app/docs/code-splitting) immediately. It's also supported