mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
9 lines
188 B
JavaScript
9 lines
188 B
JavaScript
import { Component } from 'react';
|
|
import { WebView } from 'react-native';
|
|
|
|
class LgtmView extends Component {
|
|
render() {
|
|
return <WebView source={{uri: 'https://lgtm.com'}}/>;
|
|
}
|
|
}
|