add assessment list

This commit is contained in:
2022-10-17 21:49:25 -03:00
parent 0721977bb6
commit 9d2cce1a4a
7 changed files with 78 additions and 15 deletions

View File

@@ -30,7 +30,6 @@ type Props = {
export const QuestionsQuery: FC<Props> = ({ title, where, status }) => {
const { user } = useCurrentUser()
const [questions, setQuestions] = useState<Question[]>([])
const [pageInfo, setPageInfo] = useState<PageInfo | undefined>()
@@ -80,8 +79,6 @@ export const QuestionsQuery: FC<Props> = ({ title, where, status }) => {
})
}
console.log(pageInfo)
return (
<QuestionsList
title={title}