layout.tsx 367 B

12345678910111213141516171819
  1. import React from 'react'
  2. import type { FC } from 'react'
  3. import GA, { GaType } from '@/app/components/base/ga'
  4. const Layout: FC<{
  5. children: React.ReactNode
  6. }> = ({ children }) => {
  7. return (
  8. <div className=''>
  9. <div className="min-w-[300px]">
  10. <GA gaType={GaType.webapp} />
  11. {children}
  12. </div>
  13. </div>
  14. )
  15. }
  16. export default Layout