Your site doesn’t include support for the “*” block. You can leave it as-is or remove it

You’re getting that notice because your JavaScript code resulted in the following error:

ReferenceError: Cannot access ‘EditComponent’ before initialization

This means you need to register your block after the constants EditComponent and SaveComponent are defined.

// Define the constants first.
const EditComponent = ...;
const SaveComponent = ...;

// Then register your block.
registerBlockType('eternaltwentyfifteen/prevnext', {
    // Your args here.
    edit: EditComponent,
    save: SaveComponent,
});

Alternatively, you can declare them as functions instead.

// Register the block.
registerBlockType('eternaltwentyfifteen/prevnext', {
    // Your args here.
    edit: EditComponent,
    save: SaveComponent,
});

// Functions are hoisted, so EditComponent and SaveComponent are already available
// before registerBlockType() is called.

function EditComponent() {
    ...
}

function SaveComponent() {
    ...
}

Further Reading

Excerpts from MDN:

See also Understanding JavaScript Function Declarations: ‘function’ vs ‘const’ on DEV.to.

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)