Skip to content

Commit

Permalink
resolved conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
AtmegaBuzz committed Jan 7, 2023
1 parent c7b4989 commit fe1550e
Show file tree
Hide file tree
Showing 9 changed files with 409 additions and 126 deletions.
14 changes: 7 additions & 7 deletions App.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@ export default function App() {
const [barcode,setBarcode] = useState('');
const [searchQuery,setSearchQuery] = useState('');
const [isLoggedIn,setIsLoggedIn] = useState(false);
const [email,setEmail] = useState(null);
const [password, setPassword] = useState(null);
const [userDetails,setUserDetails] = useState(null);
const [products,setProducts] = useState([]);

const contextValue = {
barcode,
searchQuery,
email,
password,
isLoggedIn,
userDetails,
products,

setProducts,
setBarcode,
setSearchQuery,
setEmail,
setPassword,
setIsLoggedIn
setIsLoggedIn,
setUserDetails
}

const [routes] = useState([
Expand Down
Loading

0 comments on commit fe1550e

Please sign in to comment.