8f2b05f 1f122c3 8f2b05f 1f122c3 8f2b05f 1f122c3 8f2b05f 1f122c3
1
2
3
4
5
6
7
8
9
10
11
12
13
import { ComponentProps } from "react" import { MediaList } from "../media-list" export function VideoList(props: Omit<ComponentProps<typeof MediaList>, "type">) { return ( <MediaList {...props} type="video" /> ) }