appbaseio/dejaVu

View on GitHub
packages/browser/src/actions/sort.js

Summary

Maintainability
A
0 mins
Test Coverage
import { SORT } from './constants';

export const setSort = (order, field) => ({
    type: SORT.SET_SORT,
    order,
    field,
});

export const resetSort = () => ({
    type: SORT.RESET_SORT,
});