mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-05-01 07:00:13 -05:00
ac167780ec
* docs: seed and extra env var * fix: linting
19 lines
542 B
TypeScript
19 lines
542 B
TypeScript
import dynamic from 'next/dynamic';
|
|
import { ComponentProps } from 'react';
|
|
|
|
// Dynamically import the Lottie component with SSR disabled
|
|
const LottiePlayer = dynamic(
|
|
() => import('react-lottie-player').then((mod) => mod.default),
|
|
{ ssr: false }
|
|
);
|
|
|
|
export type DynamicLottieProps = ComponentProps<typeof LottiePlayer>;
|
|
|
|
// Export the dynamic component with the same props as the original
|
|
function DynamicLottie(props: DynamicLottieProps) {
|
|
return <LottiePlayer {...props} />;
|
|
}
|
|
|
|
// Using CommonJS export
|
|
export default DynamicLottie;
|