ant-design-blazor/site/AntDesign.Docs/App.razor
James Yeung d2e9c4b247 feat(module: config-provider): support RTL (#1238)
* feat(module: config-provider): support RTL

* add rtl for each component

* fix rtl for pagination

* add rtl for overlay
2021-03-31 19:23:26 +08:00

31 lines
722 B
C#

<ConfigProvider>
<ConventionRouter AppAssembly="@typeof(MainLayout).Assembly">
<Found Context="routeData">
<RouteView RouteData="routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
@if (Result != null)
{
@Result
}
</LayoutView>
</NotFound>
</ConventionRouter>
</ConfigProvider>
<AntContainer />
@code{
RenderFragment Result;
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
await Task.Delay(2000);
Result = @<Result Status="404"/>;
}
}