How do you consume a Blazor component library?

You can consume a library in either of two ways: Full name with namespace Using Razor’s @using directive If the MyComponentLib is the component library and MyComponent is the component name, those are consumed like in the following. Option 1 Option 2 Refer to the link Consume Blazor a library component.