ListBox Transform from C# WPF to Blazor

I am re-building an old application on Windows desktop, written in C#. I need to load a list of strings into the Radzen Blazor ListBox, and then read which one a user picks. Can you help me identify how I would do this with the Radzen tool?

Old Code:
lstLength = new List() { "Kilometers", "meters"};
// Then put in the List in listboxes //
lstTo.ItemsSource = lstLength;
lstFrom.ItemsSource = lstLength;

Blazor components are declared usually in .razor file. You can check our demos and Microsoft documentation for more info.