Add eslint and fix eslint errors, other minor improvements

This commit is contained in:
Szymon Nowakowski
2024-12-25 17:26:20 +01:00
parent 8c15df8e06
commit 135d54908f
21 changed files with 911 additions and 144 deletions

View File

@@ -28,8 +28,8 @@ const router = createBrowserRouter([
{
path: "attachment/:attachmentId",
Component: Attachment,
}
]
},
],
},
],
},
@@ -45,5 +45,5 @@ const root = createRoot(rootElement);
root.render(
<StrictMode>
<RouterProvider router={router} />
</StrictMode>
</StrictMode>,
);