> ## Documentation Index
> Fetch the complete documentation index at: https://docs.totemlabs.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Playable versions

> Planned: keep older successful publishes playable and choose which build is public.

export const StatusBadge = ({state = "available", children}) => {
  const labels = {
    available: "Available",
    "early-access": "Early access",
    planned: "Planned",
    internal: "Internal draft"
  };
  return <span className={`totem-status totem-status--${state}`}>
      {children || labels[state] || state}
    </span>;
};

<StatusBadge state="planned" />

Playable version history is coming soon. The Versions tab stays visible in the dashboard as a disabled Coming soon control.

Publishing a new build still keeps the same public game link. Opening an older build, sharing a version-specific link, or choosing a previous public build is not available yet.

There are no setup steps for this feature until it is released. See [Product status](/roadmap) for the planned-surface list.
