add link to new beta (#1065)

This commit is contained in:
Steve Ruiz 2022-12-03 12:26:48 +00:00 committed by GitHub
parent 412d4db618
commit 7be4a27d59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 86 additions and 1 deletions

View file

@ -2,6 +2,7 @@ import { Tldraw, TldrawApp, TldrawProps, useFileSystem } from '@tldraw/tldraw'
import * as React from 'react'
import { useUploadAssets } from '~hooks/useUploadAssets'
import * as gtag from '~utils/gtag'
import { BetaNotification } from './BetaNotification'
declare const window: Window & { app: TldrawApp }
@ -39,6 +40,7 @@ const Editor = ({ id = 'home', ...rest }: EditorProps & Partial<TldrawProps>) =>
{...fileSystemEvents}
{...rest}
/>
<BetaNotification />
</div>
)
}