Skip to content

Commit

Permalink
Fixed types error
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVOiceover committed Jun 3, 2024
1 parent a0d397e commit dce267b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/pages/AddQuestion/AddQuestion.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// import React from "react";
import { useNavigate } from "react-router-dom";
//import { useNavigate } from "react-router-dom";
// import Button from "../../common/Button/Button";
// import Dropdown from "../../common/Dropdown/Dropdown";
import AddQuestionForm from "../../common/AddQuestionForm/AddQuestionForm.tsx";
import AddQuestionForm from '../../common/AddQuestionForm/AddQuestionForm.tsx'

function AddQuestion() {
return (
<>
<AddQuestionForm />
</>
);
return (
<>
<AddQuestionForm />
</>
)
}

export default AddQuestion;
export default AddQuestion

0 comments on commit dce267b

Please sign in to comment.