26 lines
492 B
Plaintext
26 lines
492 B
Plaintext
@page "/pokemon"
|
|
|
|
|
|
@inject IPokemonService PokemonService
|
|
|
|
@attribute [StreamRendering]
|
|
@rendermode InteractiveServer
|
|
|
|
|
|
<PageTitle>Pokémon Sleep</PageTitle>
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="bootstrap/bootstrap-lumen.css" /> <!-- app.css -->
|
|
</head>
|
|
|
|
<div class="w-100">
|
|
<!-- <PokemonBackground PokemonImages="pokemonImageUrls" ShinyPokemonImages="pokemonShinyImageUrls" /> -->
|
|
|
|
<PokemonHeader />
|
|
|
|
<PokemonTable AllPokemon="pokemons"/>
|
|
|
|
<hr class="mt-5" />
|
|
|
|
|
|
</div> |