Merge version_1_1781443361009 into main #3
@@ -1,6 +1,12 @@
|
||||
import { useState, useEffect, useCallback } from 'react';
|
||||
|
||||
export default function HeroVideoExpand({ title, description, onComplete }: any) {
|
||||
interface HeroVideoExpandProps {
|
||||
title: string;
|
||||
description: string;
|
||||
onComplete?: () => void;
|
||||
}
|
||||
|
||||
export default function HeroVideoExpand({ title, description, onComplete }: HeroVideoExpandProps) {
|
||||
const [isPlaying, setIsPlaying] = useState(false);
|
||||
|
||||
const handleComplete = useCallback(() => {
|
||||
|
||||
Reference in New Issue
Block a user