manifold/web/pages/embed/analytics.tsx

21 lines
544 B
TypeScript
Raw Normal View History

import { Col } from 'web/components/layout/col'
import { Spacer } from 'web/components/layout/spacer'
import { fromPropz } from 'web/hooks/use-propz'
import Analytics, {
2022-03-20 22:21:28 +00:00
CustomAnalytics,
FirebaseAnalytics,
getStaticPropz,
} from '../stats'
2022-03-20 22:21:28 +00:00
export const getStaticProps = fromPropz(getStaticPropz)
export default function AnalyticsEmbed(props: Parameters<typeof Analytics>[0]) {
2022-03-20 22:21:28 +00:00
return (
<Col className="w-full bg-white px-2">
2022-03-20 22:21:28 +00:00
<CustomAnalytics {...props} />
<Spacer h={8} />
<FirebaseAnalytics />
</Col>
)
}