TS2613
error TS2613: Module ‘
add
‘ has no default export. Did you mean to use ‘import { add } from "add"
‘ instead?
Broken Code ❌
1 |
|
1 |
|
Fixed Code ✔️
To fix the bug we have to convert our named export into a default export:
1 |
|
error TS2613: Module ‘
add
‘ has no default export. Did you mean to use ‘import { add } from "add"
‘ instead?
1 |
|
1 |
|
To fix the bug we have to convert our named export into a default export:
1 |
|