I am trying to add autocomplete component to my Blazor WebAssembly App. I did everything according to the instructions. It should provides a text box with a list of suggestions to select from as the user types, but I have it
without list of suggestions.

My question is: why is this happening and how to fix it?
Perhaps this is due to errors in index.html?
<link rel='nofollow' href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
Cannot resolve file 'StockMarket.Client.styles.css'
Cannot resolve directory '_content'
Cannot resolve directory 'Syncfusion.Blazor.Themes'
Cannot resolve file 'bootstrap5.css'
Cannot resolve directory '_content'
Cannot resolve directory 'Syncfusion.Blazor.Core'
Cannot resolve directory 'scripts'
Cannot resolve file 'syncfusion-blazor.min.js'
Cannot resolve directory '_framework'
Cannot resolve file 'blazor.webassembly.js'
Detailed description of my actions:
1) Installed nuget package Syncfusion.Blazor
2) Added this code to Program.cs in client side
using Syncfusion.Blazor;
builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = true; });
3. Added style sheet to index.html in client side
<link rel='nofollow' href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
4. Added script reference to index.html in client side
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
5. Added to _import.razor
@using Syncfusion.Blazor
@using Syncfusion.Blazor.DropDowns