summaryrefslogtreecommitdiff
path: root/Blog/Components/Pages/BRP.razor
blob: 6f15f0dfb396f2a9af7f5b8ca2dc1c88f8164e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@page "/BRP/{BSN}"
<PageTitle>BRP</PageTitle>

<main>
    <div>
        <details>
            <summary><h1 class="inline-block">Request</h1></summary>
            <JsonRender Element="RequestBody?.RootElement"></JsonRender>
        </details>
    </div>
    <div>
        <h1>Response</h1>
        <JsonRender Element="Entry?.RootElement">
        </JsonRender>
    </div>
</main>