summaryrefslogtreecommitdiff
path: root/preact/test/ts/preact-global-test.tsx
blob: e6c32862cf59866be452ef840d430de97df58d7c (plain)
1
2
3
4
5
6
import { createElement } from '../../src';

// Test that preact types are available via the global `preact` namespace.

let component: preact.ComponentChild;
component = <div>Hello World</div>;