20CAKE20.JS
04-state

State

14

04-state/06-state-control.tsx

State Control

Example

Official Cake20 View example for state control.

class ChartModel {
  points: number[] = [];
}

export const data = {
  config: readonly({ locale: "ko" }),
  chart: shallow({ points: [] as number[] }),
  model: plain(new ChartModel()),
};

export default () => <p>Language: {data.config.locale}</p>;