Files
IGP-Fan-Reference/Components/Layout/LayoutColumnComponent.razor
T
2025-04-27 19:34:50 -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; }
}