<%= render(Zui::TabPanel.new) do |tp| %>
<%= tp.with_group(id: "profile") do %>
<%= tp.with_tab { "Profile" } %>
<%= tp.with_panel { "Profile content " } %>
<% end %>
<%= tp.with_group(id: "notifications", selected: true) do %>
<%= tp.with_tab { "Notifications" } %>
<%= tp.with_panel { "Notification content" } %>
<% end %>
<% end %>