Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 560 Bytes

File metadata and controls

24 lines (15 loc) · 560 Bytes
description
Define static HTML using Universal Dashboard.

HTML

You can define static HTML using New-UDHtml. This cmdlet does not create React components but rather allows you to define static HTML. Any valid HTML string is supported.

The following creates an unordered list.

New-UDHtml -Markup "<ul><li>First</li><li>Second</li><li>Third</li></ul>"

API

New-UDHtml

Write raw HTML to your dashboard.

Name Type Description Required
Markup string The HTML to display. True