import React, { Component } from 'react'; import { View, Text, Button, StyleSheet } from 'react-native'; import CalendarStrip from 'react-native-calendar-strip'; // import moment from 'moment'; const WeeklyCalendar = (props) => { return ( ); }; const style = StyleSheet.create({ container: { height: 54, flexDirection: 'row', alignItems: "center", marginHorizontal: 10, marginVertical: 3, borderWidth: 1.5, borderStyle: "solid", borderColor: "#1467ff", borderRadius: 5, backgroundColor: "#f5f5f5", }, }) export default WeeklyCalendar