quintodrome/ui/src/song/SongBulkActions.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
318 B
JavaScript
Raw Normal View History

2020-02-14 05:16:59 -09:00
import React, { Fragment } from 'react'
import AddToQueueButton from './AddToQueueButton'
2020-05-15 16:47:15 -08:00
import AddToPlaylistButton from './AddToPlaylistButton'
export const SongBulkActions = (props) => {
return (
<Fragment>
<AddToQueueButton {...props} />
2020-05-15 16:47:15 -08:00
<AddToPlaylistButton {...props} />
</Fragment>
)
}