Run
Code
Preview
// Custom components are available under componentsUI const { Card, CardContent, Button, Input } = window.componentsUI; function App() { const [count, setCount] = React.useState(0); return (
Hello React!
setCount(count + 1)} className="bg-blue-500 hover:bg-blue-600" > Count: {count}
); }