mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-15 11:45:22 +00:00
18 lines
606 B
Plaintext
18 lines
606 B
Plaintext
@using Spacebar.Client.Components
|
|
|
|
<SessionManager @ref="SessionManager"></SessionManager>
|
|
<ClientManager @ref="ClientManager">
|
|
<Router AppAssembly="@typeof(App).Assembly" NotFoundPage="typeof(Pages.NotFound)">
|
|
<Found Context="routeData">
|
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
|
|
<FocusOnNavigate RouteData="@routeData" Selector="h1"/>
|
|
</Found>
|
|
</Router>
|
|
</ClientManager>
|
|
|
|
|
|
@code {
|
|
public static SessionManager SessionManager { get; set; } = null!;
|
|
public static ClientManager ClientManager { get; set; } = null!;
|
|
|
|
} |