Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. import { Filter, ReferenceInput, SelectInput, TextInput, List } from 'react-admin';
  2. const PostFilter = (props) => (
  3. <Filter {...props}>
  4. <TextInput label="Search" source="q" resettable alwaysOn />
  5. </Filter>
  6. );
  7.  
  8. export const PostList = (props) => (
  9. <List filters={<PostFilter />} {...props}>
  10. // ...
  11. </List>
  12. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement