forked from YodasMyDad/ZauberCMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_Imports.razor
35 lines (35 loc) · 1.29 KB
/
_Imports.razor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@using System.Net.Http
@using System.Net.Http.Json
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.AspNetCore.Components.Web
@using static Microsoft.AspNetCore.Components.Web.RenderMode
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.JSInterop
@using ZauberCMS.Components.Account
@using ZauberCMS.Components
@using ZauberCMS.Components.Shared
@using ZauberCMS.Components.Editors
@using ZauberCMS.Components.DataSources
@using ZauberCMS.Components.Pages
@using ZauberCMS.Components.Admin
@using ZauberCMS.Components.Admin.SettingsSection
@using ZauberCMS.Components.Admin.SettingsSection.Dialogs
@using ZauberCMS.Components.Admin.ContentSection
@using ZauberCMS.Components.Admin.UsersSection
@using ZauberCMS.Components.Admin.MediaSection
@using ZauberCMS.Components.Admin.MediaSection.Buttons
@using ZauberCMS.Components.Admin.Layout
@using ZauberCMS.Components.Admin.Shared
@using ZauberCMS.Components.Account.Shared
@using ZauberCMS.Core.Extensions
@using ZauberCMS.Core.Content.Models
@using Microsoft.AspNetCore.Components.Sections
@using Humanizer
@using MediatR
@using Radzen
@using Radzen.Blazor
@using Blazored.Modal
@using Blazored.Modal.Services
@inject IMediator Mediator
@inject NavigationManager NavigationManager