12 lines
367 B
JavaScript
12 lines
367 B
JavaScript
import Collection from '../components/Collection'
|
|
import SearchBar from '../components/SearchBar'
|
|
|
|
export default function Bookmark() {
|
|
return (
|
|
<>
|
|
<SearchBar placeholder='Search for bookmarked shows' />
|
|
<Collection endpoint='' title='Bookmarked movies' />
|
|
<Collection endpoint='' media_type='tv' title='Bookmarked TV series' />
|
|
</>
|
|
)
|
|
}
|