We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16370d4 commit 1d10767Copy full SHA for 1d10767
tests/playground/playground.tsx
@@ -6,14 +6,14 @@ import { ClaudePrototype } from "./claude"
6
import { Replica } from "./replica"
7
8
const MODES = {
9
- claude: { component: ClaudePrototype, label: "claude" },
10
replica: { component: Replica, label: "replica" },
+ claude: { component: ClaudePrototype, label: "claude" },
11
} as const
12
13
type Mode = keyof typeof MODES
14
15
const App = () => {
16
- const [activeComponent, setActiveComponent] = useState<Mode>("claude")
+ const [activeComponent, setActiveComponent] = useState<Mode>("replica")
17
const ModeComponent = MODES[activeComponent].component
18
19
return (
0 commit comments