GitHub

DaffSidebarRegistration

Represents a registration of a sidebar. A collection of sidebar components is associated with an ID which can be passed to DaffSidebarService.

import { DaffSidebarRegistration } from '@daffodil/design/sidebar'
interface DaffSidebarRegistration {
  id: string
  header: Type<unknown>
  body: Type<unknown>
  footer: Type<unknown>
}

Properties

Name Type Description
id string
header Type<unknown>
body Type<unknown>
footer Type<unknown>