Skip to content

Instantly share code, notes, and snippets.

@maxim-s
Created December 19, 2014 12:20
Show Gist options
  • Save maxim-s/f870f6068efe6e8f2001 to your computer and use it in GitHub Desktop.
Save maxim-s/f870f6068efe6e8f2001 to your computer and use it in GitHub Desktop.
<ReactBootstrap.Pager>{
for page in [1..@state.pagination.num_pages]
if page == @state.pagination.current_page
<ReactBootstrap.PageItem disabled href="##{page}">{page}</ReactBootstrap.PageItem>
else
<ReactBootstrap.PageItem eventKey={page} onSelect={@handleSelect} href="##{page}">{page}</ReactBootstrap.PageItem>
}
</ReactBootstrap.Pager>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment