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
230 B
JavaScript
Raw Normal View History

export const ALBUM_MODE_GRID = 'ALBUM_GRID_MODE'
2021-05-24 08:58:15 -08:00
export const ALBUM_MODE_TABLE = 'ALBUM_TABLE_MODE'
export const albumViewGrid = () => ({ type: ALBUM_MODE_GRID })
2021-05-24 08:58:15 -08:00
export const albumViewTable = () => ({ type: ALBUM_MODE_TABLE })