import React, { memo } from 'react';
import { View, Text } from 'react-native';
import { WEEKDAYS_SHORT } from '../utils';
import type { TWeekdays } from './types';
import { DEFAULT_PROPS } from '../props';
const Weekdays = memo(
({ weekdaysContainerStyle, weekdayStyle, weekdayTextStyle }: TWeekdays) => {
const renderWeekdays = (day: string) => (
{day}
);
return (
{WEEKDAYS_SHORT.map(renderWeekdays)}
);
},
);
export default Weekdays;