Open weppami opened 1 month ago
I think it should go below this line in setup-backend.md file,
"- Create a file called action-types.ts
in the /types/actions
folder for server action types with the following code:"
export type ActionState = {
status: "success" | "error";
message: string;
data?: any;
};
-root->types->actions->action-types.ts already contains above defined ActionState
The instructions end with :
Where should it be saved ? There is no indication Thanks