Skip to content

Commit 1b6e5e4

Browse files
committed
Screen
1 parent 89691d7 commit 1b6e5e4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

example/src/screens/playgroundScreen.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const BLUE = '#00BBF2';
1212

1313
export default function PlaygroundScreen() {
1414
const [selectedDate, setSelectedDate] = useState(INITIAL_DATE);
15-
const [element, setElement] = useState('Calendar');
15+
const [element, setElement] = useState(elements.LIST);
1616

1717

1818
const onDayPress = useCallback((day) => {
@@ -33,6 +33,7 @@ export default function PlaygroundScreen() {
3333
<CalendarList
3434
current={INITIAL_DATE}
3535
style={styles.calendar}
36+
horizontal
3637
/>
3738
);
3839
};

0 commit comments

Comments
 (0)