This commit is contained in:
geoffsee
2025-05-22 23:14:01 -04:00
commit 33679583af
242 changed files with 15090 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
// FeedbackRecord.ts
import { types } from "mobx-state-tree";
const FeedbackRecord = types.model("FeedbackRecord", {
feedback: types.string,
timestamp: types.string,
user: types.optional(types.string, "Anonymous"),
});
export default FeedbackRecord;