Skip to content
Snippets Groups Projects
subredditDropdown.js 545 B
Newer Older


const sortOptions = [
    { key: 'New', text: 'New', value: 'New'},
    { key: 'Hot', text: 'Hot', value: 'Hot'},
    { key: 'Top', text: 'Top', value: 'Top'},
    { key: 'All', text: 'All', value: 'All'},
]

const topOptions = [
    { key: 'Today', text: 'Today', value: 'Today'},
    { key: 'Week', text: 'This Week', value: 'Week'},
    { key: 'Month', text: 'This Month', value: 'Month'},
    { key: 'Year', text: 'This Year', value: 'Year'},
    { key: 'AllTime', text: 'All Time', value: 'AllTime'},
  ]

export {sortOptions, topOptions}