diff --git a/website/src/components/Home/Watch/index.tsx b/website/src/components/Home/Watch/index.tsx index 900a823f5a6..26c72d5942e 100644 --- a/website/src/components/Home/Watch/index.tsx +++ b/website/src/components/Home/Watch/index.tsx @@ -5,7 +5,7 @@ * LICENSE file in the root directory of this source tree. */ -import React from 'react'; +import {useState} from 'react'; import Section from '../Section'; import SectionTitle from '../SectionTitle'; @@ -13,6 +13,8 @@ import SectionTitle from '../SectionTitle'; import styles from './styles.module.css'; function Watch() { + const [playingId, setPlayingId] = useState(null); + return (
-
-