Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
fix pane typo issue in README
  • Loading branch information
yagizhanNY authored Apr 5, 2024
1 parent 0af4400 commit 132590e
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1077,28 +1077,25 @@ private void CloseModal()
## Pane

```razor
<PaneLayout id="pane-layout"
variant="@PaneVariant.floating"
layout="full-horizontal"
borderless
>
<Pane Id="pane1" heading="Pane Left" slot="left" size="33%">
<PaneLayout Id="pane-layout"
Variant="@PaneVariant.floating"
Layout="full-horizontal"
Borderless="true">
<Pane Id="pane1" Heading="Pane Left" Slot="left" Size="33%">
<p>This is the left pane.</p>
</Pane>
<Pane Id="pane2" heading="Pane Top" slot="top" size="33%">
<Pane Id="pane2" Heading="Pane Top" Slot="top" Size="33%">
<p>This is the top pane.</p>
</Pane>
<Pane Id="pane3" heading="Pane Right" slot="right" size="33%">
<Pane Id="pane3" Heading="Pane Right" Slot="right" Size="33%">
<p>This is the right pane.</p>
</Pane>
<Pane Id="pane4" heading="Pane Bottom" slot="bottom" size="33%">
<Pane Id="pane4" Heading="Pane Bottom" Slot="bottom" Size="33%">
<p>This is the bottom pane.</p>
<Pane>
</PaneLayout>
```

Expand Down

0 comments on commit 132590e

Please sign in to comment.