fixed some merge errors
Signed-off-by: Alex Stan <alex.stan.2010@proton.me>
This commit is contained in:
parent
1c6c5327c3
commit
dcd44670df
1 changed files with 4 additions and 1 deletions
|
@ -1,9 +1,12 @@
|
||||||
'use client';
|
'use client';
|
||||||
import { useState } from 'react'
|
import { useEffect, useState } from 'react'
|
||||||
import { Dialog, DialogPanel } from '@headlessui/react'
|
import { Dialog, DialogPanel } from '@headlessui/react'
|
||||||
import { Bars3Icon, XMarkIcon } from '@heroicons/react/24/outline'
|
import { Bars3Icon, XMarkIcon } from '@heroicons/react/24/outline'
|
||||||
import Logo from '../../components/logo';
|
import Logo from '../../components/logo';
|
||||||
import { CheckIcon } from '@heroicons/react/20/solid';
|
import { CheckIcon } from '@heroicons/react/20/solid';
|
||||||
|
import { SessionState } from '@/app/lib/session';
|
||||||
|
import { AnswerType, Question, getQuestions } from '@/app/lib/question';
|
||||||
|
import QuestionView from '@/app/components/question_component';
|
||||||
|
|
||||||
|
|
||||||
const Page = ({ params }: { params: { category: string }}) => {
|
const Page = ({ params }: { params: { category: string }}) => {
|
||||||
|
|
Loading…
Reference in a new issue