Client has been renamed to launcher, and thus namespaces and artifact names had to change. The server project has also had some artifacts renamed in order to create a more clear separation of builds. This will break auto-updates before v0.9.0.
10 lines
325 B
Text
10 lines
325 B
Text
<div class="pane @Class" data-size="@Size">
|
|
@ChildContent
|
|
</div>
|
|
|
|
@code {
|
|
[CascadingParameter] public SplitPane Parent { get; set; }
|
|
[Parameter] public RenderFragment ChildContent { get; set; }
|
|
[Parameter] public string Class { get; set; } = "";
|
|
[Parameter] public string Size { get; set; } = "50%";
|
|
}
|