Skip to content

Commit

Permalink
User dashboard 95% complete. Document viewing, editing, saving, uploa…
Browse files Browse the repository at this point in the history
…ding, deletion, and searching have been fully implemented with the necessary ui elements. (#7)
  • Loading branch information
RupertJonesSA authored Nov 28, 2024
1 parent 7aaad56 commit 504ce0e
Show file tree
Hide file tree
Showing 39 changed files with 11,066 additions and 2,419 deletions.
15 changes: 15 additions & 0 deletions client/1
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
"use client";

import fileApi from "../../../../../api/fileRoutes";

interface DocumentIdPageProps {
params: {
documentId: string;
};
}

const DocumentIdPage = () => {
return <div>DocumentId</div>;
};

export default DocumentIdPage;
Loading

0 comments on commit 504ce0e

Please sign in to comment.