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

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