mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
5 lines
167 B
JavaScript
5 lines
167 B
JavaScript
import { h } from 'preact'; // OK - JSX element uses 'h' after babel compilation
|
|
import { q } from 'preact'; // NOT OK - not used
|
|
|
|
export default (<div>Hello</div>);
|