11 lines
210 B
C#
11 lines
210 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace Webshop.App.Components
|
|
{
|
|
public partial class ProfilePicture
|
|
{
|
|
[Parameter]
|
|
public RenderFragment? ChildContent { get; set; }
|
|
}
|
|
}
|