Advertisement
zidniryi

App.js

Jun 22nd, 2020
2,695
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React, { Component } from 'react'
  2. import { Text, View } from 'react-native'
  3. import moment from 'moment'
  4. import 'moment/locale/id'
  5.  
  6. export default class AddCart extends Component {
  7.   render() {
  8.     const date= new Date()
  9.     const dateType = new Date('2020-09-29')
  10.  
  11.     return (
  12.       <View style={{justifyContent:'center', alignItems:'center', flex:1}}>
  13.         <Text> {moment(date).format('LLLL')} </Text>
  14.         <Text> {moment(dateType).format('LLLL')} </Text>
  15.  
  16.       </View>
  17.     )
  18.   }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement