Code to Image Converter

import { useState } from "react"
const Counter = () => {
const [count, setCount] = useState(0);
return (
<div>
<p>{count}</p>
<button onClick={() => setCount(count+1)}>
Click Me
</button>
</div>
)
}
Javascript
Dracula
Sunset
Monospace
High
PNG

Comments

No comments

There are no comments yet. Share your thoughts and experience with thousands of others!