exciting-aftermath/Portfolio.WebUI.Server/Components/Pages/PokemonSleep.razor

18 lines
361 B
Plaintext

@page "/pokemonsleep"
@inject IPokemonService PokemonService
@attribute [StreamRendering]
@rendermode InteractiveServer
<PageTitle>Pokémon Sleep</PageTitle>
<div class="w-100">
<PokemonBackground PokemonImages="pokemonImageUrls" ShinyPokemonImages="pokemonShinyImageUrls" />
<PokemonHeader />
<PokemonTable AllPokemon="pokemons"/>
</div>