We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d436360 commit 23dacfdCopy full SHA for 23dacfd
index1.js
@@ -5,3 +5,6 @@ import * as capitalizeString from "capitalize_strings";
5
//Create an Export Fallback with export default
6
//export default function subtract(x,y) {return x-y;} // "maths_functions"
7
8
+// Import a Default Export
9
+import subtract from "maths_functions";
10
+console.log(subtract(7,4));
0 commit comments