class ActiveAdmin::PagePresenter


presenter.block #=> The block passed in to new<br>presenter #=> :table
end
# some awesome stuff
presenter = PagePresenter.new as: :table do
Usage:
available using hash style syntax.
Initialize with a set of options and a block. The options become
A simple object that gets used to present different aspects of views

def [](key)

def [](key)
  @options[key]
end

def initialize(options = {}, &block)

def initialize(options = {}, &block)
  @options, @block = options, block
end