Black Friday Sale Upgrade Your Home →

Playground


Playgrounds by nothanii are free in-browser IDE environments. Use them to code collaboratively with your friends, without downloading anything on your computer.

import { useState } from 'react'
import Hello from './Hello.js'
export default function App () {
const [count, setCount] = useState(0)
return (
<>
<Hello name="Hanii" />
<button onClick={() => setCount(count + 1)}>
Clicked {count} times
</button>
</>
)
}