Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleclient-logic/helloWorld.ts
export default function helloWorld() {
?? console.log('Hello world!');
}

...

Code Block
languagejs
titleindex.ts
import helloWorld from 'client-logic/helloWorld';
export default??{ helloWorld };

...