import { Component, Show } from "solid-js"; import { useVideo } from "../context"; import { FaSolidPause, FaSolidPlay } from "solid-icons/fa"; export const PlayState: Component<{}> = (props) => { const video = useVideo(); return ( ); };