import { createSignal } from "solid-js"; import { Popover } from "@kobalte/core"; export function SolidApp(props) { // Local state for optimistic updates or other UI-only logic const [isUpdating, setIsUpdating] = createSignal(false); const increment = () => { setIsUpdating(true); props.push("increment", {}); }; const decrement = () => { setIsUpdating(true); props.push("decrement", {}); }; return (

Solid + Kobalte

Current Count {props.state.count}
Kobalte Info
Kobalte Logic Kobalte is a headless UI toolkit for Solid.js. It provides the logic while you provide the styles!

Bridge: Phoenix LiveView ↔ Solid.js

); }