correct entry point to use onInit method

This commit is contained in:
Niels Lyngsø
2023-08-29 09:10:38 +02:00
parent 9e03493d76
commit 64c3a5b5a8

View File

@@ -1,4 +1,4 @@
console.log('Hello from the custom entrypoint file!');
export default function () {
console.log('Hello from the custom entrypoint inside the default function!');
export function onInit() {
console.log('Hello from the custom entrypoint inside the onInit function!');
}