29 lines
629 B
TypeScript
29 lines
629 B
TypeScript
import {MyScreenContainer} from '@components/MyScreenContainer';
|
|
import {Text} from '@gluestack-ui/themed';
|
|
import {RootState} from '@redux/store';
|
|
import {View} from 'react-native';
|
|
import {useSelector} from 'react-redux';
|
|
|
|
const events = [
|
|
{
|
|
title: 'Bootshaus',
|
|
description: '01.12.2023 20:00 Uhr',
|
|
},
|
|
{
|
|
title: 'Bootshaus',
|
|
description: '01.12.2023 20:00 Uhr',
|
|
},
|
|
];
|
|
|
|
export function CalendarScreen() {
|
|
const currentTheme = useSelector(
|
|
(state: RootState) => state.nonSaveVariables.theme.colors,
|
|
);
|
|
|
|
return (
|
|
<MyScreenContainer>
|
|
<Text>Calendar</Text>
|
|
</MyScreenContainer>
|
|
);
|
|
}
|