e6a3e5c3ea
* move core into repo, apps into apps folder, update tests * Update scripts for build:core * improve scripts * remove noise from www * Update .gitignore * Fix focus bug * add ci test script * Update main.yml
14 lines
328 B
TypeScript
14 lines
328 B
TypeScript
import * as React from 'react'
|
|
import { Tldraw } from '@tldraw/tldraw'
|
|
|
|
export default function ChangingId() {
|
|
const [id, setId] = React.useState('example')
|
|
|
|
React.useEffect(() => {
|
|
const timeout = setTimeout(() => setId('example2'), 2000)
|
|
|
|
return () => clearTimeout(timeout)
|
|
}, [])
|
|
|
|
return <Tldraw id={id} />
|
|
}
|