Skip to content

Commit

Permalink
Revert "Merge branch 'main' into develop"
Browse files Browse the repository at this point in the history
This reverts commit 37c7158, reversing
changes made to ffc6071.
  • Loading branch information
simonbs committed Oct 24, 2023
1 parent 37c7158 commit 3633f7a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/features/projects/view/ProjectsPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import SessionProjectRepository from "../domain/SessionProjectRepository"
import ClientProjectsPage from "./client/ProjectsPage"

export default async function ProjectsPage({
sessionProjectRepository,
projectId,
versionId,
specificationId
}: {
sessionProjectRepository: SessionProjectRepository
projectId?: string
versionId?: string
specificationId?: string
}) {
const projects = await sessionProjectRepository.getProjects()
return (
<ClientProjectsPage
projects={projects}
projectId={projectId}
versionId={versionId}
specificationId={specificationId}
/>
)
}

0 comments on commit 3633f7a

Please sign in to comment.