12 lines
282 B
React
12 lines
282 B
React
|
|
import React from 'react'
|
||
|
|
import LibraryScanButton from './LibraryScanButton'
|
||
|
|
|
||
|
|
const LibraryListBulkActions = (props) => (
|
||
|
|
<>
|
||
|
|
<LibraryScanButton fullScan={false} {...props} />
|
||
|
|
<LibraryScanButton fullScan={true} {...props} />
|
||
|
|
</>
|
||
|
|
)
|
||
|
|
|
||
|
|
export default LibraryListBulkActions
|