I'm able to properly render the spreadsheet in Next.js 12.2.5 / react 17.0.2 / react-dom 17.02 but when I bump react to 18.2 and react-dom to 18.2 with the same Next.js version I don't have the spreadsheet render at all.
Is react 18 not supported yet by the react components?
import { SpreadsheetComponent } from "@syncfusion/ej2-react-spreadsheet";
export default () => {
return (
<SpreadsheetComponent allowOpen={true} openUrl="/api/spreadsheet/open" />
);
};