import * as React from 'react'; import type { TldrawApp } from '@toeverything/components/board-state'; export const TldrawContext = React.createContext({} as TldrawApp); export function useTldrawApp() { const context = React.useContext(TldrawContext); return context; }