Newer
Older
taehui / taehui-fe / src / app / [language] / want / store / setWantStore.ts
@Taehui Taehui on 17 Mar 272 bytes 2024-03-17 오후 2:12
export default function setWantStore() {
  return {
    textInput: "",
    wantVariety: "essay",

    setTextInput(textInput: string) {
      this.textInput = textInput;
    },

    setWantVariety(wantVariety: string) {
      this.wantVariety = wantVariety;
    },
  };
}