@instructure/ui-billboard
v10.10.0
Published
A UI component to display empty states, 404 pages, redirects, etc.
Downloads
21,944
Maintainers
Keywords
Readme
category: packages
ui-billboard
A billboard component for empty states, 404 pages, redirects, etc.
Components
The ui-billboard
package contains the following:
Installation
npm install @instructure/ui-billboard
Usage
---
type: code
---
import React from 'react'
import { Billboard } from '@instructure/ui-billboard'
const MyBillboard = () => {
return (
<Billboard
size="medium"
heading="Well, this is awkward."
message="Think there should be something here?"
hero={<Img src={placeholderImage(900, 500)} />} />
)
}