What I'm doing wrong with New-UDGridLayout?

Product: PowerShell Universal
Version: 4.0.9

Hi all,

I’m doing something wrong. I would like to use the New-UDGridLayout component. Ik would like to have two components (one left, one right) but it’s oke that users resizes or moves the gridLayout.

But i’ve got a problem how it showed on my dashboard. Any tips how to get it nice and get the next underneath each other? So for the left one, Left, enter ,Lorum text, enter, Lorum text

This is the reproduction code code that I have:

New-UDDashboard -Title “Hi” -Content {
New-UDGrid -Container -Content {
New-UDGridLayout -Content {
New-UDPaper -Id “LoggingPaper” -Content {
New-UDDynamic -Id ‘logging’ -Content {
New-UDHeading -Text “Left” -Size 1
New-UDHTML -Markup “
Lorem Ipsum is simply dummy text of the printing and typesetting industry.

New-UDHeading -Text “Left Part 2” -Size 1
New-UDHTML -Markup “Why do we use it?”
New-UDHTML -Markup “It is a long established fact that a reader will be distracted by the readable content.”
}
}
New-UDPaper -Id “FormPaper” -Content {
New-UDHeading -Text “Right” -Size 1
New-UDHTML -Markup “
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s,

New-UDHeading -Text “Right part 2” -Size 1
New-UDHTML -Markup “Why do we use it?”
New-UDHTML -Markup “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.”

        } 
    } -Draggable -Resizable -Persist
}

}