import dynamic from 'next/dynamic'
import { LmGoogleFormProps } from './googleFormProps'
import { useState } from 'react'
const GoogleFormEl = dynamic(
() => import(/* webpackChunkName: 'googleForm' */ './GoogleForm')
)
export default function LmGoogleFormContainer({ content }: LmGoogleFormProps) {
// const [inViewRef, elementInView] = useInView(intersectionDefaultOptions)
const [formStructure] = useState(content.form_data)
// return !elementInView ? (
//
// ) : formStructure ? (
//
// ) : null
return
}