This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>SnacKINGS - Retos del Mes</title> | |
<!--[if mso]> | |
<style type="text/css"> | |
table {border-collapse: collapse;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>SnacKINGS - Retos del Mes</title> | |
<!--[if mso]> | |
<style type="text/css"> | |
table {border-collapse: collapse;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>SnacKINGS - Retos del Mes</title> | |
<!--[if mso]> | |
<style type="text/css"> | |
table {border-collapse: collapse;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>SnacKINGS - Retos del Mes</title> | |
<!--[if mso]> | |
<style type="text/css"> | |
table {border-collapse: collapse;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta content="width=device-width, initial-scale=1" name="viewport" /> | |
<meta name="x-apple-disable-message-reformatting" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta content="telephone=no" name="format-detection" /> | |
<title>Mondelez</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>SnacKINGS - Retos del Mes</title> | |
<!--[if mso]> | |
<style type="text/css"> | |
table {border-collapse: collapse;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta content="width=device-width, initial-scale=1" name="viewport" /> | |
<meta name="x-apple-disable-message-reformatting" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta content="telephone=no" name="format-detection" /> | |
<title>Mondelez</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Random(seed) { | |
this.seed = Math.random() * Math.pow(2,31); | |
this.a = 1103515245; | |
this.c = 12345; | |
this.m = Math.pow(2, 31); | |
} | |
Random.prototype.next = function() { | |
this.seed = (this.a * this.seed + this.c) % this.m; | |
return this.seed; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import Preloader from "./app/components/Preloader"; | |
import LoggedNavigation from './app/navigations/loggedNavigation'; | |
import GuestNavigation from './app/navigations/guestNavigation'; | |
// Initialize Firebase | |
import * as firebase from 'firebase'; | |
const firebaseConfig = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { | |
AppRegistry, | |
StyleSheet, | |
Text, | |
View, | |
TouchableHighlight, | |
NativeAppEventEmitter, | |
NativeEventEmitter, | |
NativeModules, |
NewerOlder