Skip to content

Latest commit

 

History

History
40 lines (19 loc) · 528 Bytes

README.md

File metadata and controls

40 lines (19 loc) · 528 Bytes

ReactNative_webviewApp

react-native-webview only support for native, not web

syntax reminder:

// App.js

import {object_name} from 'file_path2';
import methodname from 'file_path1'

... omit ....

// file_path2.js

import {Component} from 'react' or 'react-native', plz check

class object_name extends Compoent{

  render(){

    return();

  }

}

export default object_name;

// file_path1.js

 export default method_name(){


    return();


}