Custom WebView, extending react-native-webview

Are there any guides out there on how to create a custom webview module for ejected Expo projects?

All I’m looking to do is extend the react-native-webview package and include code to ignore SSL errors:

@Override
public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
handler.proceed();
}