jbilcke's picture
working to improve the clap format
f42b4a1
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"
/>
)
}