using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.Settings.Components; /// /// ViewComponent for the general company settings tab. /// Handles company name, CVR, address, contact info. /// public class SettingsGeneralViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }