File size: 243 Bytes
8f2b05f
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { ComponentProps } from "react"

import { MediaList } from "../media-list"

export function TrackList(props: Omit<ComponentProps<typeof MediaList>, "type">) {
  
  return (
    <MediaList
      {...props}
      type="track"
    />
  )
}