import * as React from 'react'
import { Canvas } from './Canvas'
import { useApp } from '~hooks'
import { renderWithApp } from '~test/renderWithApp'
describe('Canvas', () => {
test('mounts component without crashing', () => {
const Test = () => {
const app = useApp()
return (
)
}
renderWithApp()
})
})