@using ArcaneLibs.Extensions @using LibMatrix.EventTypes.Spec.State @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; }