BitComponent is a native high performance components for Blazor

NuGet Version Nuget

BitComponent is a set of native and high performance Blazor UI controls. This is implemented in C# and this does not depend on or wrap existing JavaScript frameworks or libraries.

Why choose Bit Blazor Components?

  • Bit components are free

  • Bit components are open source

  • Bit components have a high performance

  • Bit components are Blazor native components

  • Bit components are supported in both server-side and client-side (WASM) Blazor

To use the Bit components, please follow these steps:

  1. Install the Bit.Client.Web.BlazorUI nuget package

  2. In the default document (_Host.cshtml, index.html or _Layout.cshtml), add the Bit.Client.Web.BlazorUI style reference in the head section.

<link rel="stylesheet" href="_content/Bit.Client.Web.BlazorUI/styles/bit.blazorui.min.css" />
  1. In the default document (_Host.cshtml, index.html or _Layout.cshtml), add the Bit.Client.Web.BlazorUI script reference in the end of body section.

<script src="_content/Bit.Client.Web.BlazorUI/scripts/bit.blazorui.min.js"></script>
  1. In the _Imports.razor, add the using Bit.Client.Web.BlazorUI to make it available throughout the project.

@using Bit.Client.Web.BlazorUI;

Last updated