Previews

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Narrow
render(Primer::Alpha::Layout.new) do |component|
component.with_main(bg: :attention, p: 6) { "Main content" }
component.with_sidebar(width: :narrow, bg: :accent, p: 6) { "Sidebar content" }
end
# Default
render(Primer::Alpha::Layout.new) do |component|
component.with_main(bg: :attention, p: 6) { "Main content" }
component.with_sidebar(width: :default, bg: :accent, p: 6) { "Sidebar content" }
end
# Wide
render(Primer::Alpha::Layout.new) do |component|
component.with_main(bg: :attention, p: 6) { "Main content" }
component.with_sidebar(width: :wide, bg: :accent, p: 6) { "Sidebar content" }
end