import React, { useState } from "react"; import "./home.css"; import { PayPal, Purchase, ShowCase, Home } from '.'; import { AllProducts} from "../products" // component const Details = () => { const [cart, setCart] = useState([]); return ( <> ); }; const Landing = () => { const [showDetails, setShowDetails] = useState(false); return ( <> {showDetails ?
: setShowDetails(true)} />} ); }; export default Landing;