components
This commit is contained in:
commit
009a214b40
40 changed files with 966 additions and 0 deletions
15
SurveyFrontend/src/components/Survey/Survey.tsx
Normal file
15
SurveyFrontend/src/components/Survey/Survey.tsx
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import React from "react";
|
||||
import SurveyInfo from "../SurveyInfo/SurveyInfo.tsx";
|
||||
import QuestionsList from "../QuestionsList/QuestionsList.tsx";
|
||||
import styles from './Survey.module.css'
|
||||
|
||||
const Survey: React.FC = () => {
|
||||
return (
|
||||
<div className={styles.survey}>
|
||||
<SurveyInfo />
|
||||
<QuestionsList />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Survey;
|
||||
Loading…
Add table
Add a link
Reference in a new issue