SplitPageLayout

Provides structure for a split page layout, including independent scrolling for the pane and content regions. Useful for responsive list/detail patterns, when an item in the pane updates the page content on selection.
  • Alpha
  • Reviewed for accessibility
This documentation is moving to a new home. Please update any link or bookmark that points to this page. The new content can be found here.
import {SplitPageLayout} from '@primer/react'

If you need a more flexible layout component, consider using the PageLayout component.

Examples

Minimal

Header
Pane
Content
Footer

With overflowing pane content

Header

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam at enim id lorem tempus egestas a non ipsum. Maecenas imperdiet ante quam, at varius lorem molestie vel. Sed at eros consequat, varius tellus et, auctor felis. Donec pulvinar lacinia urna nec commodo. Phasellus at imperdiet risus. Donec sit amet massa purus.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam at enim id lorem tempus egestas a non ipsum. Maecenas imperdiet ante quam, at varius lorem molestie vel. Sed at eros consequat, varius tellus et, auctor felis. Donec pulvinar lacinia urna nec commodo. Phasellus at imperdiet risus. Donec sit amet massa purus.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam at enim id lorem tempus egestas a non ipsum. Maecenas imperdiet ante quam, at varius lorem molestie vel. Sed at eros consequat, varius tellus et, auctor felis. Donec pulvinar lacinia urna nec commodo. Phasellus at imperdiet risus. Donec sit amet massa purus.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam at enim id lorem tempus egestas a non ipsum. Maecenas imperdiet ante quam, at varius lorem molestie vel. Sed at eros consequat, varius tellus et, auctor felis. Donec pulvinar lacinia urna nec commodo. Phasellus at imperdiet risus. Donec sit amet massa purus.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam at enim id lorem tempus egestas a non ipsum. Maecenas imperdiet ante quam, at varius lorem molestie vel. Sed at eros consequat, varius tellus et, auctor felis. Donec pulvinar lacinia urna nec commodo. Phasellus at imperdiet risus. Donec sit amet massa purus.

Content
Footer

With pane hidden on narrow viewports

Header
Pane
Content
Footer

With content hidden on narrow viewports

Header
Pane
Content
Footer

With resizable pane

Header
Pane

Use a value between 20% and 25%

Content
Footer

Without dividers

Header
Pane
Content
Footer

With pane on right

Header
Content
Pane
Footer

With condensed padding

Header
Pane
Content
Footer

Without padding

Header
Pane
Content
Footer
Pane
Content

With heading

Pane Heading

Pane
Content

With non-sticky pane

Header
Pane
Content
Footer

With a custom sticky header

Custom sticky header
Content
Pane
Footer

Props

SplitPageLayout

NameTypeDefaultDescription
sx
SystemStyleObject

SplitPageLayout.Header

NameTypeDefaultDescription
padding
| 'none' | 'condensed' | 'normal'
'normal'

The amount of padding inside the header.

divider
| 'none' | 'line' | { narrow?: | 'none' | 'line' | 'filled' regular?: | 'none' | 'line' wide?: | 'none' | 'line' }
'line'
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
false

Whether the header is hidden.

sx
SystemStyleObject

SplitPageLayout.Content

NameTypeDefaultDescription
width
| 'full' | 'medium' | 'large' | 'xlarge'
'large'

The maximum width of the content region.

padding
| 'none' | 'condensed' | 'normal'
'normal'

The amount of padding inside the content.

hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
false

Whether the content is hidden.

sx
SystemStyleObject

SplitPageLayout.Pane

NameTypeDefaultDescription
width
| 'small' | 'medium' | 'large'
'medium'

The width of the pane.

minWidth
number
256

The minimum width of the pane.

resizable
boolean
false

When true, the pane may be resized by the user.

widthStorageKey
string
'paneWidth'

Provide a key used by localStorage to persist the size of the pane on the client.

sticky
boolean
true

Whether the pane should stick to the top of the screen while the content scrolls.

offsetHeader
number | string
0

Use offsetHeader along with the sticky prop to push the sticky pane down to make room for a sticky header if necessary. Use the type string to specify the height with a unit i.e. 5rem; otherwise the type number will be taken as px.

padding
| 'none' | 'condensed' | 'normal'
'normal'

The amount of padding inside the pane.

divider
| 'none' | 'line' | { narrow?: | 'none' | 'line' | 'filled' regular?: | 'none' | 'line' wide?: | 'none' | 'line' }
'line'
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
false

Whether the pane is hidden.

sx
SystemStyleObject

SplitPageLayout.Footer

NameTypeDefaultDescription
padding
| 'none' | 'condensed' | 'normal'
'normal'

The amount of padding inside the footer.

divider
| 'none' | 'line' | { narrow?: | 'none' | 'line' | 'filled' regular?: | 'none' | 'line' wide?: | 'none' | 'line' }
'line'
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
false

Whether the footer is hidden.

sx
SystemStyleObject

Status

Alpha

  • Component props and basic example usage of the component are documented on primer.style/react.
  • Component does not have any unnecessary third-party dependencies.
  • Component can adapt to different themes.
  • Component can adapt to different screen sizes.
  • Component has robust unit test coverage (100% where achievable).
  • Component has visual regression coverage of its default and interactive states.
  • Component does not introduce any axe violations.
  • Component has been manually reviewed by the accessibility team and any resulting issues have been addressed.

Beta

  • Component is used in a production application.
  • Common usage examples are documented on primer.style/react.
  • Common usage examples are documented in storybook stories.
  • Component has been reviewed by a systems designer and any resulting issues have been addressed.
  • Component does not introduce any performance regressions.

Stable

  • Component API has been stable with no breaking changes for at least one month.
  • Feedback on API usability has been sought from developers using the component and any resulting issues have been addressed.
  • Component has corresponding design guidelines documented in the interface guidelines.
  • Component has corresponding Figma component in the Primer Web library.
  • Tooling (such as linters, codemods, etc.) exists to prevent further use of alternatives.