17 lines
255 B
Plaintext
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; }
|
|
|
|
} |