export function exportedFunction() {
return "This is an exported function.";
}
export class ExportedClass {
constructor() {
this.name = "ExportedClass";
}
}
export default function defaultExportedFunction() {
return "This is a default exported function.";
}
export const exportedVariable = "This is an exported variable.";