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} />;
06-components/05-component-bind.tsx
Official Cake20 View example for component bind.
export const data = {
age: 20,
};
export default () => <NumberField bind={data.age} />;