Drop your file
.jsx · .js · .tsx · .ts · .html · .htm
⚛
JSX Playground
Download
Upload
Full Preview
import React, { useState } from 'react'; import { Sparkles } from 'lucide-react'; export default function App() { const [count, setCount] = useState(0); return (
{count}
clicks
setCount(c => c + 1)} className="w-full py-2.5 bg-indigo-600 hover:bg-indigo-700 text-white rounded-xl font-medium transition-colors" > Click me
Made by{' '}
Jeremie Bornais
); }
snippet
-