Blog/Components/Pages/BRP.razor 382 B · 17 lines · raw · history

1 @page "/BRP/{BSN}"
2 <PageTitle>BRP</PageTitle>
3
4 <main>
5 <div>
6 <details>
7 <summary><h1 class="inline-block">Request</h1></summary>
8 <JsonRender Element="RequestBody?.RootElement"></JsonRender>
9 </details>
10 </div>
11 <div>
12 <h1>Response</h1>
13 <JsonRender Element="Entry?.RootElement">
14 </JsonRender>
15 </div>
16 </main>
17