Playground

Write React code and see it live
export default function App() {
  return (
    <div className="w-full min-h-screen flex items-center justify-center bg-gradient-to-br from-zinc-900 via-zinc-800 to-zinc-900">
      <div className="text-center">
        <h1 className="text-4xl font-bold text-white mb-4">
          Hello, Playground!
        </h1>
        <p className="text-zinc-400">
          Edit the code on the left to see changes
        </p>
      </div>
    </div>
  );
}