Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. import React from 'react';
  2. import { StyleSheet, Text, View } from 'react-native';
  3. import Navigation from './src/aplikasiKasir/Navigation';
  4. export default class App extends React.Component {
  5. render() {
  6. return (
  7. <Navigation/>
  8. );
  9.  
  10. }
  11.  
  12.  
  13. }
  14.  
  15.  
  16. const styles = StyleSheet.create({
  17.  
  18.  
  19. container: {
  20.  
  21.  
  22. flex: 1,
  23.  
  24.  
  25. backgroundColor: '#fff',
  26.  
  27.  
  28. alignItems: 'center',
  29.  
  30.  
  31. justifyContent: 'center',
  32.  
  33.  
  34. },
  35.  
  36.  
  37. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement