quintodrome/ui/src/song/SongBulkActions.js

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

11 lines
221 B
JavaScript
Raw Normal View History

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