FreeCodeCamp Zipline - Random Quote Machine
A Pen by Ralph Cachero on CodePen.
import { COLORS } from ./helpers/constants; | |
const style = { | |
button: { | |
backgroundColor: COLORS.DARK_BLUE | |
} | |
} |
import React, { Component } from 'react'; | |
import { View } from 'react-native'; | |
import NativeHelpers from './NativeHelpers'; | |
class App extends Component { | |
componentDidMount() { | |
const initialPush = await NativeHelpers.getInitialNotification(); | |
// Do something with initial push | |
} | |
Start |
FreeCodeCamp Zipline - Random Quote Machine
A Pen by Ralph Cachero on CodePen.