You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by sinnbeck January 10, 2025
I am starting to modernize an older app and sadly it is using react 16. But I want to rewrite the admin to use inertia and according to the package.json it should support it
But I am getting an error whenever I click on a <Link>
I just return a link directly so there is no extra stuff
return<Linkhref="/admin">CLICK ME</Link>
I get this error on click
The only "big" change I had to make was how I use react dom
createInertiaApp({resolve: name=>require(`./Pages/${name}`),setup({el, App, props}){ReactDom.render(<App{...props}/>,el)//instead of createRoot()},})</div>
The text was updated successfully, but these errors were encountered:
Discussed in #2177
Originally posted by sinnbeck January 10, 2025
I am starting to modernize an older app and sadly it is using react 16. But I want to rewrite the admin to use inertia and according to the package.json it should support it
But I am getting an error whenever I click on a
<Link>
I just return a link directly so there is no extra stuff
I get this error on click
The only "big" change I had to make was how I use react dom
The text was updated successfully, but these errors were encountered: