Import a Default Export

Tell us what’s happening:

Your code so far


"use strict";
export default subtract from "math_functions" ;
subtract(7,4);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/import-a-default-export

You’re supposed to import for this challenge… (not export as you are doing)

"use strict";
import subtract  from "math_functions";
subtract(7,4);
1 Like

Thanks :slight_smile: and don’t forget to use double quotes, as using single like mine will failed

don’t do this -> import subtract from 'math_functions';

use double quote instead