quintodrome/ui/src/actions/albumView.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
226 B
JavaScript
Raw Normal View History

export const ALBUM_MODE_GRID = 'ALBUM_GRID_MODE'
export const ALBUM_MODE_LIST = 'ALBUM_LIST_MODE'
export const albumViewGrid = () => ({ type: ALBUM_MODE_GRID })
export const albumViewList = () => ({ type: ALBUM_MODE_LIST })