summaryrefslogtreecommitdiff
path: root/Blog/Components/Pages/BRP.razor
blob: 89c85105611ad2c3f15b58d894bcf649d698186e (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>Request</h1></summary>
            <JsonRender Element="RequestBody?.RootElement"></JsonRender>
        </details>
    </div>
    <div>
        <h1>Response</h1>
        <JsonRender Element="Entry?.RootElement">
        </JsonRender>
    </div>
</main>