CreateSurveyFormPage.tsx 256 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
import React from "react";
import { Page } from "./Page";
Jiwon Yoon's avatar
Jiwon Yoon committed
3
import { QuestionProvider } from "./question.context";
4

Jiwon Yoon's avatar
Jiwon Yoon committed
5
6
export const CreateSurveyForm = () => {
  return (
Jiwon Yoon's avatar
Jiwon Yoon committed
7
    <>
Jiwon Yoon's avatar
Jiwon Yoon committed
8
      <QuestionProvider>
Jiwon Yoon's avatar
Jiwon Yoon committed
9
        <Page />
Jiwon Yoon's avatar
Jiwon Yoon committed
10
      </QuestionProvider>
Jiwon Yoon's avatar
Jiwon Yoon committed
11
    </>
Jiwon Yoon's avatar
Jiwon Yoon committed
12
13
  );
};