Skip to content

Latest commit

 

History

History
55 lines (46 loc) · 925 Bytes

README.adoc

File metadata and controls

55 lines (46 loc) · 925 Bytes

AsciiDocPlayground

Sample Uses

Informational

    <Notification
      notificationMessage="Yay a message"
      type={NOTIFICATION_TYPES.DEFAULT}
    />

Succussful

    <Notification
      notificationMessage="Yay a successful message"
      type={NOTIFICATION_TYPES.SUCCESSFUL}
    />

Warning

    <Notification
      notificationMessage="Yay a warning message"
      type={NOTIFICATION_TYPES.WARNING}
    />

Error

    <Notification
      notificationMessage="Yay a error message"
      type={NOTIFICATION_TYPES.CRITICAL}
    />

R7 Branded

    <Notification
      notificationMessage="Yay a branded message"
      type={NOTIFICATION_TYPES.BRANDED}
      onCloseNotification={() => alert('Close Me')}
    />
  </div>