Combien d'export par défaut peut-on faire dans un fichier js code example
Example: javascript import
import { module } from "./path"; // single module
import Module from "./path"; // default export
import Module, { module } from "./path"; // both
import { module } from "./path"; // single module
import Module from "./path"; // default export
import Module, { module } from "./path"; // both