BitComponent is a native high performance components for Blazor
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:
Install the
Bit.Client.Web.BlazorUI
nuget packageIn the default document (
_Host.cshtml
,index.html
or_Layout.cshtml
), add theBit.Client.Web.BlazorUI
style reference in the head section.
<link rel="stylesheet" href="_content/Bit.Client.Web.BlazorUI/styles/bit.blazorui.min.css" />
In the default document (
_Host.cshtml
,index.html
or_Layout.cshtml
), add theBit.Client.Web.BlazorUI
script reference in the end of body section.
<script src="_content/Bit.Client.Web.BlazorUI/scripts/bit.blazorui.min.js"></script>
In the
_Imports.razor
, add the usingBit.Client.Web.BlazorUI
to make it available throughout the project.
@using Bit.Client.Web.BlazorUI;
Last updated