import * as React from 'react'; import {withTheme} from 'react-native-paper'; import {Agenda} from "react-native-calendars"; function CustomAgenda(props) { const { colors } = props.theme; return ( ); } export default withTheme(CustomAgenda);