How would i implement my own componentlibrary #2312
-
My company uses blazor and we want to create a component library maintained by one of our teams and used by all other teams.
When i look at fast.design's documentation they have clear guidelines for every usecase here: How would i build my library with fluientui-blazor? <FluentButton Appearance=@appearance .Filled Required=@required ... /> Or would you say it is better to not wrap the components and use them directly (not having our own restricted library) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi, With Blazor you'd normally use the components as-is. It is not impossible to wrap them but I don't see any compelling reasons to do so. It will be very hard to style things, etc. You choose to use this library because you want your app to have the Fluent Design look and feel. If you want to deviate from that design, that is fine of course, but then this library is probably not the best choice for you. |
Beta Was this translation helpful? Give feedback.
Hi,
With Blazor you'd normally use the components as-is. It is not impossible to wrap them but I don't see any compelling reasons to do so. It will be very hard to style things, etc.
You choose to use this library because you want your app to have the Fluent Design look and feel. If you want to deviate from that design, that is fine of course, but then this library is probably not the best choice for you.