How to use the react-native-modal.Footer function in react-native-modal

To help you get started, we’ve selected a few react-native-modal examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github EdgeApp / edge-react-gui / src / modules / UI / components / PasswordReminderModal / components / Modal.ui.js View on Github external
export type BodyState = {}

Modal.Body = class Body extends Component {
  render () {
    return 
  }
}

// FOOTER /////////////////////////////////////////////////////////////////////////////
export type FooterProps = {
  children: Node,
  style?: Object
}
export type FooterState = {}

Modal.Footer = class Footer extends Component {
  render () {
    return 
  }
}