{%{{{ '::Enum:BookType:' + row.type | abpLocalization }}}%}
{%{{{ row.publishDate | date }}}%}
{%{{{ row.price | currency }}}%}
```
Now you can see the final result on your browser:

{{else if UI == "Blazor" || UI == "BlazorServer"}}
## Create a Books Page
It's time to create something visible and usable! Right click to the `Pages` folder under the `Acme.BookStore.Blazor` project and add a new **razor component**, named `Books.razor`:

Replace the contents of this component as shown below:
````html
@page "/books"