Ui/Notifications.razor
@using Sandbox;
@using Sandbox.UI;
@inherits PanelComponent
@namespace Clover.Ui

<root>
	<div class="screen-notifications">
		@foreach ( var notification in ScreenNotificationList )
		{
		<div class="screen-notification @notification.Type" [email protected]>
			@notification.Text
		</div>
		}
	</div>
</root>