From 31f80ee116def2c30350db2cf8dd629559b11a16 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Tue, 9 Jul 2019 03:59:37 +0300 Subject: [PATCH] minor --- 1-js/13-modules/03-modules-dynamic-imports/article.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/1-js/13-modules/03-modules-dynamic-imports/article.md b/1-js/13-modules/03-modules-dynamic-imports/article.md index b3620889..a43548d0 100644 --- a/1-js/13-modules/03-modules-dynamic-imports/article.md +++ b/1-js/13-modules/03-modules-dynamic-imports/article.md @@ -77,8 +77,7 @@ export default function() { } ``` - -The default export becomes `default` property in the module object, as explained in the [previous chapter](info:import-export). +To import it, we need to get `default` property of the module object, as explained in the [previous chapter](info:import-export). So, the dynamic import will be like this: