Files
2026-05-29 14:17:46 -04:00

17 lines
255 B
Plaintext

<div class="columnContainer">
@ChildContent
</div>
<style>
.columnContainer {
display: flex;
flex-direction: column;
flex: 1;
}
</style>
@code {
[Parameter] public RenderFragment? ChildContent { get; set; }
}