mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-12-26 20:15:35 -05:00
11 lines
209 B
Ruby
11 lines
209 B
Ruby
class UsersAndCustomersLowerTabs < Netzke::Basepack::TabPanel
|
|
component :customers
|
|
component :users
|
|
|
|
def configure(c)
|
|
c.prevent_header = true
|
|
c.items = [ :users, :customers ]
|
|
super
|
|
end
|
|
end
|