// noPage
import { Linking } from 'react-native'

export default class m {

  static facebook(url: string): void {
    let base = 'https://www.facebook.com/sharer/sharer.php?u='
    Linking.openURL(base + url)
  }

  static twitter(url: string): void {
    let base = 'http://twitter.com/share?url='
    Linking.openURL(base + url)
  }

  static whatsapp(url: string): void {
    let base = 'https://api.whatsapp.com/send?text='
    Linking.openURL(base + url)
  }
}