-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path_Imports.razor
35 lines (35 loc) · 1.15 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 System.Collections.Immutable
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.AspNetCore.Components.Web
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.Extensions.Localization
@using Microsoft.Extensions.Logging
@using Microsoft.JSInterop
@using LiftLog.Ui.Shared
@using LiftLog.Ui.Shared.Presentation
@using LiftLog.Ui.Shared.Presentation.AiWorkoutWalkthrough
@using LiftLog.Ui.Shared.Smart
@using LiftLog
@using LiftLog.Lib
@using LiftLog.Lib.Models
@using LiftLog.Lib.Services
@using LiftLog.Ui.Models
@using LiftLog.Ui.Services
@using Fluxor
@using LiftLog.Ui.Store
@using LiftLog.Ui.Store.App
@using LiftLog.Ui.Store.CurrentSession
@using LiftLog.Ui.Store.Program
@using LiftLog.Ui.Store.SessionEditor
@using LiftLog.Ui.Store.Exercises
@using LiftLog.Ui.Store.Settings
@using LiftLog.Ui.Store.Stats
@using LiftLog.Ui.Store.AiSessionCreator
@using LiftLog.Ui.Store.Feed
@using LiftLog.Ui.i18n
@using BlazorTransitionableRoute
@using LiftLog.Ui.Shared.Smart.Tips
@inject LiftLog.Ui.i18n.TypealizR.TypealizedUiStrings UiStrings;