Tldraw/packages/tldraw/src/components/page-panel/page-panel.test.tsx

10 wiersze
243 B
TypeScript

import * as React from 'react'
import { PagePanel } from './page-panel'
import { renderWithContext } from '~test'
describe('page panel', () => {
test('mounts component without crashing', () => {
renderWithContext(<PagePanel />)
})
})