jbilcke-hf's picture
jbilcke-hf HF staff
add like button and report button
8f2b05f
raw
history blame
No virus
243 Bytes
import { ComponentProps } from "react"
import { MediaList } from "../media-list"
export function VideoList(props: Omit<ComponentProps<typeof MediaList>, "type">) {
return (
<MediaList
{...props}
type="video"
/>
)
}