export default () => { | |
console.log("default export2") | |
} | |
export function printArg(arg) { | |
console.log(arg, '2') | |
} | |
export function throwError() { | |
throw Error("error2!"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment