Skip to content
Snippets Groups Projects

Finished pagination

Merged Amund Skuggevik Foss requested to merge (#4)Pagination_implementation into master
6 files
+ 75
13
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -2,13 +2,14 @@ import { Select } from '@mui/material';
import React, { useEffect } from 'react';
import { Image, Text, StyleSheet, View, TouchableOpacity } from "react-native";
import SelectDropdown from 'react-native-select-dropdown'
import {SearchBar} from "./SearchBar"
import {SearchBar} from './SearchBar'
import {useRecoilState} from 'recoil'
import { capturedFilterState, typeState } from "../atoms/atoms";
import { maxHeight, maxWidth } from '@mui/system';
export const Header = () => {
const [capturedSorting, setCapturedSorting] = useRecoilState(capturedFilterState)
const [type, setType] = useRecoilState(typeState)
@@ -128,6 +129,7 @@ const styles = StyleSheet.create ({
width: 300
}
})
export default Header
function typeFilter(arg0: () => void, typeFilter: any) {
Loading