Skip to content

Instantly share code, notes, and snippets.

@chuyihuang
Created September 26, 2017 12:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuyihuang/8cbfaa98f604ba99e38858c955d17799 to your computer and use it in GitHub Desktop.
Save chuyihuang/8cbfaa98f604ba99e38858c955d17799 to your computer and use it in GitHub Desktop.
week_7_demo_4
import React, { Component } from 'react'
import { View, Text } from 'react-native';
export default class DatePickerExample extends Component {
constructor(props){
super(props)
this.state = {}
}
render(){
return (
<View style={{marginTop: 100, alignItems: 'center'}}>
<Text>DatePickerExample</Text>
</View>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment