Files
codeql/javascript/ql/test/library-tests/frameworks/ReactNative/webview.js
2022-12-19 15:15:17 +00:00

9 lines
192 B
JavaScript

import { Component } from 'react';
import { WebView } from 'react-native';
class CodeQLView extends Component {
render() {
return <WebView source={{uri: 'https://github.com'}}/>;
}
}