|
|
@ -1,4 +1,4 @@ |
|
|
|
import React from "react"; |
|
|
|
import React, { useEffect } from "react"; |
|
|
|
import ProductOverAll from "./ProductOverAll"; |
|
|
|
import ProductOverAll from "./ProductOverAll"; |
|
|
|
import ProductTab from "../../../components/ProductTab"; |
|
|
|
import ProductTab from "../../../components/ProductTab"; |
|
|
|
import ProductSuggestions from "../../../components/ProductSuggestion"; |
|
|
|
import ProductSuggestions from "../../../components/ProductSuggestion"; |
|
|
@ -8,6 +8,9 @@ import Comments from "../../../components/Comments"; |
|
|
|
import QandA from "../../../components/QandA"; |
|
|
|
import QandA from "../../../components/QandA"; |
|
|
|
|
|
|
|
|
|
|
|
const DesktopProductLayout = () =>{ |
|
|
|
const DesktopProductLayout = () =>{ |
|
|
|
|
|
|
|
useEffect(() => { |
|
|
|
|
|
|
|
window.scrollTo(0, 0) |
|
|
|
|
|
|
|
}, []) |
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<div className="w-11/12 flex flex-col overflow-y-hidden mt-3 mb-64 items-center"> |
|
|
|
<div className="w-11/12 flex flex-col overflow-y-hidden mt-3 mb-64 items-center"> |
|
|
|
<ProductOverAll /> |
|
|
|
<ProductOverAll /> |
|
|
|