diff --git a/src/views/Product/Desktop/index.js b/src/views/Product/Desktop/index.js index 50fa93f..061932e 100644 --- a/src/views/Product/Desktop/index.js +++ b/src/views/Product/Desktop/index.js @@ -4,30 +4,28 @@ import React, { useEffect } from "react"; import ProductOverAll from "./ProductOverAll"; import ProductSuggestions from "../../../components/ProductSuggestion"; import Rate from "../Rate"; -import Comments from "../../../components/Comments"; +import Comments from "../../../components/Comments"; import QandA from "../../../components/QandA"; - -const DesktopProductLayout = () =>{ - useEffect(() => { - window.scrollTo(0, 0) - }, []) - return ( -
- -
- -
-
- -
-
- - {/* */} -
- -
- ); +const DesktopProductLayout = () => { + useEffect(() => { + window.scrollTo(0, 0); + }, []); + return ( +
+ +
+ +
+
+ +
+
+ + {/* */} +
+
+ ); }; -export default DesktopProductLayout; \ No newline at end of file +export default DesktopProductLayout;