about summary refs log tree commit diff
path: root/MatrixUtils.Web/Pages/Dev/ModalTest.razor
blob: 665f548924fbffbab12cf32c852d8d62b7f414a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
@page "/Dev/ModalTest"

<PageTitle>Modal test</PageTitle>

<h3>Rory&::MatrixUtils - Modal test</h3>
<hr/>
@for (int i = 0; i < 10; i++)
{
    <ModalWindow X="i*75" Y="i*75">
        <h1>Hello, world!</h1>
    </ModalWindow>
}