about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Shared/TimelineComponents/TimelineMessageItem.razor
blob: 80a432ba4f8cf09b59b4ce1116d498f55cdff45a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
@using MatrixRoomUtils.Core.Extensions
@using MatrixRoomUtils.Core.Responses
<pre>
    @ObjectExtensions.ToJson(Event.Content, indent: false)
</pre>

@code {

    [Parameter]
    public StateEventResponse Event { get; set; }

}