quintodrome/ui/src/song/SongBulkActions.js
2020-02-14 09:16:59 -05:00

10 lines
221 B
JavaScript

import React, { Fragment } from 'react'
import AddToQueueButton from './AddToQueueButton'
export const SongBulkActions = (props) => {
return (
<Fragment>
<AddToQueueButton {...props} />
</Fragment>
)
}