Previews

1
2
3
4
5
6
7
8
9
render(Primer::Beta::BorderBox.new) do |component|
component.with_header do |header|
header.with_title(tag: :h2) do
"Header with title"
end
end
component.with_body { "Body" }
component.with_footer { "Footer" }
end