mirror of
https://github.com/wassname/talk.git
synced 2026-07-17 11:33:39 +08:00
5 lines
200 B
JavaScript
5 lines
200 B
JavaScript
import withSortOption from '../hocs/withSortOption';
|
|
import SortOption from '../components/SortOption';
|
|
|
|
export const createSortOption = (label, sort) => withSortOption({...sort, label})(SortOption);
|