I create a new blazor web app project like this: (https://i.sstatic.net/ejiES4vI.png)
It has 2 projects in 1 solution, one is server-side and the other one is client-side. In client-side project there is no such thing "wwwroot/index.html" or "Layout.razor".
I create my own layout like this:
@inherits LayoutComponentBase<main><article> @Body</article></main>When i use this layout i want to use panning and zoom to mouse(with ctrl + mouse wheel). As i see cant do it without javascript code but cant figure out how to do.