import React, { Fragment } from 'react' import { BooleanField, Datagrid, DateField, Filter, List, NumberField, SearchInput, Show, SimpleShowLayout, TextField, TextInput } from 'react-admin' import { BitrateField, DurationField, Pagination, Title } from '../common' import AddToQueueButton from './AddToQueueButton' import PlayButton from './PlayButton' const SongFilter = (props) => ( ) const SongBulkActionButtons = (props) => ( ) const SongDetails = (props) => { return ( ) } const SongList = (props) => { return ( } sort={{ field: 'title', order: 'ASC' }} exporter={false} bulkActionButtons={} filters={} perPage={15} pagination={} > }> ) } export default SongList