Component basics
FuncUI offers a Component inspired by ReactJS. Components allow you to organize views into reusable pieces.
There are two ways of creating a component.
Component (fun ctx -> ...)
Creating a component using the regular constructor of the Component
class. Component
inherits from Border
and therefore can be used like any other Avalonia control.
Component.create ("key", fun ctx -> ...)
Declaratively describes a component. Can be embedded in other views as this returns an IView
Last updated