---
name: Getting Started
route: /
---

import { Playground } from 'docz'
import { useState } from 'react'

# Getting Started

[Link that opens in new tab](https://duckduckgo.com)

<Playground>
  {() => {
    const [toggle, setToggle] = useState(true)
    return (
      <button
        onClick={() => {
          setToggle(a => !a)
        }}
      >
        {toggle ? 'Hello' : 'Good bye'}
      </button>
    )
  }}
</Playground>
