20CAKE20.JS
06-components

Components

23

06-components/05-component-bind.tsx

Component Bind

Example

Official Cake20 View example for component bind.

export const data = {
  age: 20,
};

export default () => <NumberField bind={data.age} />;