Define static HTML using Univeral apps.
Last updated 5 months ago
Was this helpful?
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.
New-UDHtml
The following creates an unordered list.
New-UDHtml -Markup "<ul><li>First</li><li>Second</li><li>Third</li></ul>"