ErrorState

App

Error state pairing an inline alert banner with a centered empty state. Optional retry action.

Default

Preview

Unable to load data

There was a problem loading this content.

Code
<%- include('modules/app/ErrorState', {
  message: 'Failed to load user data. Please check your connection.'
}) %>

With retry link

Preview

Unable to load data

Try again
Code
<%- include('modules/app/ErrorState', {
  title:      'Database connection failed',
  message:    'Could not connect to the database. Please try again.',
  retryHref:  req.originalUrl,
  retryLabel: 'Try again'
}) %>
Source modules/app/ErrorState.ejs