class ActiveAdmin::Views::Panel

def build(title, attributes = {})

def build(title, attributes = {})
  super(attributes)
  add_class "panel"
  @title = h3(title.to_s)
  @contents = div(class: "panel_contents")
end