@using ArcaneLibs.Extensions
@using LibMatrix.EventTypes.Spec.State.RoomInfo
@inherits BaseTimelineItem
@Event.Sender created the room with room version @CreationEventContent.RoomVersion
@(CreationEventContent.Federate ?? true ? "and" : "without") federating with other servers.
This room is of type @(CreationEventContent.Type ?? "Untyped room (usually a chat room)")
@Event.RawContent?.ToJson(indent: false)
@code {
private RoomCreateEventContent CreationEventContent => Event.TypedContent as RoomCreateEventContent;
}