// Fixture: a small, domain-neutral JavaScript file — JSX in a `.jsx` file, a
// class with methods, and both spellings of a function declaration.
exportclassAccount{deposit(amount){this.balance+=amount;returnthis.balance;}}exportfunctionbuildAccount(){returnnewAccount();}exportconstAccountBadge=({ label })=><span>{label}</span>;