adds eslint

This commit is contained in:
geoffsee
2025-06-24 17:29:52 -04:00
committed by Geoff Seemueller
parent 9698fc6f3b
commit 02c3253343
169 changed files with 4896 additions and 4804 deletions

View File

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