Movie Table (#2)
* Table to search movies implemented * OMDB service for API connection Reviewed-on: #2 Co-authored-by: Berack96 <giacomobertolazzi7@gmail.com> Co-committed-by: Berack96 <giacomobertolazzi7@gmail.com>
This commit was merged in pull request #2.
This commit is contained in:
11
Components/Pages/Movie.razor
Normal file
11
Components/Pages/Movie.razor
Normal file
@@ -0,0 +1,11 @@
|
||||
@page "/movie/{id}"
|
||||
|
||||
<PageTitle>Movie Details</PageTitle>
|
||||
|
||||
<h1>TODO</h1>
|
||||
<p>Movie ID: @id</p>
|
||||
|
||||
@code {
|
||||
[Parameter]
|
||||
public string id { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user