Back to Docz

Getting Started

examples/with-custom-links/src/index.mdx

2.4.0392 B
Original Source

import { Playground } from 'docz' import { useState } from 'react'

Getting Started

Link that opens in new tab

<Playground> {() => { const [toggle, setToggle] = useState(true) return ( <button onClick={() => { setToggle(a => !a) }} > {toggle ? 'Hello' : 'Good bye'} </button> ) }} </Playground>