Created
September 23, 2024 09:42
-
-
Save SyedTayyabUlMazhar/e14afcf8d1689a537e65c945a013bd27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// mathUtils.js | |
export default function add(a, b) { | |
return a + b; | |
} | |
// anotherFile.js | |
import sum from './mathUtils'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment