mirror of
https://github.com/github/codeql.git
synced 2025-12-24 12:46:34 +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>);
|