您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

20 行
482 B

  1. import React from 'react'
  2. import Head from "next/head"
  3. import GoTop from './GoTop'
  4. const Layout = ({ children }) => {
  5. return(
  6. <>
  7. <Head>
  8. <meta charSet="utf-8" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1" />
  10. <title>Thamrin Group</title>
  11. </Head>
  12. {children}
  13. <GoTop scrollStepInPx="100" delayInMs="10.50" />
  14. </>
  15. )
  16. }
  17. export default Layout