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

10 wiersze
243 B
TypeScript
Czysty Zwykły widok Historia

2021-08-16 07:49:31 +00:00
import * as React from 'react'
import { PagePanel } from './page-panel'
import { renderWithContext } from '~test'
describe('page panel', () => {
test('mounts component without crashing', () => {
renderWithContext(<PagePanel />)
})
})