Skip to content

Commit

Permalink
scherm voor winkelkar gemaakt
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahlisamero committed Dec 28, 2022
1 parent d89a15c commit 3eba6f4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions screens/CartScreen.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';

import React, {useState, useEffect} from 'react';
import {Stylesheet, Text, View, Image, TextInput, Pressable, FlatList} from 'react-native';

const Stack = createNativeStackNavigator();

const cart = ({navigation, route}) =>{

return (
<View>
<Text>
winkelkarretje

</Text>
</View>
)
}

export default cart;

0 comments on commit 3eba6f4

Please sign in to comment.