diff --git a/docs/stories/components/InjectableWebView.jsx b/docs/stories/components/InjectableWebView.jsx new file mode 100644 index 0000000..7307159 --- /dev/null +++ b/docs/stories/components/InjectableWebView.jsx @@ -0,0 +1,19 @@ +import React, { Component } from 'react'; +import { Button, View } from 'react-native-web'; +import WebView from 'react-native-webview'; + +export default class InjectableWebView extends Component { + constructor(props) { + super(props); + this.ref = React.createRef(); + } + + render() { + return ( + + +