You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PageLayout.jsx 250B

1234567891011121314
  1. import React, {useEffect} from "react";
  2. const PageLayout = ({children}) => {
  3. // useEffect(() => {
  4. // window.scrollTo(0, 0)
  5. // }, [])
  6. return (
  7. <div className="">{children}</div>
  8. );
  9. }
  10. export default PageLayout;