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

19 lines
371 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>