-
Notifications
You must be signed in to change notification settings - Fork 524
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add new fields to Question interface (#9824)
- Loading branch information
1 parent
275e94e
commit e0dc6af
Showing
5 changed files
with
1,224 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
import { QuestionnaireList } from "@/components/Questionnaire"; | ||
import QuestionnaireEditor from "@/components/Questionnaire/QuestionnaireEditor"; | ||
import { QuestionnaireShow } from "@/components/Questionnaire/show"; | ||
|
||
import { AppRoutes } from "../AppRouter"; | ||
|
||
const QuestionnaireRoutes: AppRoutes = { | ||
"/questionnaire": () => <QuestionnaireList />, | ||
"/questionnaire/:id": ({ id }) => <QuestionnaireShow id={id} />, | ||
"/questionnaire/:id/edit": ({ id }) => <QuestionnaireEditor id={id} />, | ||
}; | ||
|
||
export default QuestionnaireRoutes; |
Oops, something went wrong.