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