@using LibMatrix.StateEventTypes.Spec @using LibMatrix.Extensions @using ArcaneLibs.Extensions @inherits BaseTimelineItem

@Event.Sender created the room with room version @CreationEventContent.RoomVersion @(CreationEventContent.Federate ?? false ? "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; }