creating my polls page
This commit is contained in:
parent
28882e7038
commit
08b22b07c6
16 changed files with 266 additions and 24 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/*SurveyEditingPage.module.css*/
|
||||
/*MySurveysPage.module.css*/
|
||||
|
||||
.layout{
|
||||
width: 100%;
|
||||
12
SurveyFrontend/src/pages/MySurveysPage/MySurveysPage.tsx
Normal file
12
SurveyFrontend/src/pages/MySurveysPage/MySurveysPage.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import styles from "./MySurveysPage.module.css";
|
||||
import {MySurveyList} from "../../components/MySurveyList/MySurveyList.tsx";
|
||||
import Header from "../../components/Header/Header.tsx";
|
||||
|
||||
export const MySurveysPage = () => {
|
||||
return (
|
||||
<div className={styles.layout}>
|
||||
<Header />
|
||||
<MySurveyList />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
/*SurveyCreateAndEditingPage.module.css*/
|
||||
|
||||
.layout{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.main{
|
||||
width: 100%;
|
||||
min-height: 85vh;
|
||||
display: flex;
|
||||
background-color: #F6F6F6;
|
||||
}
|
||||
|
||||
.content{
|
||||
width: 100%;
|
||||
margin-left: 8.9%;
|
||||
}
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
import Header from "../../components/Header/Header.tsx";
|
||||
import Navigation from "../../components/Navigation/Navigation.tsx";
|
||||
import styles from './SurveyEditingPage.module.css'
|
||||
import styles from './SurveyCreateAndEditingPage.module.css'
|
||||
import { Outlet } from "react-router-dom";
|
||||
|
||||
export const SurveyEditingPage = () => {
|
||||
export const SurveyCreateAndEditingPage = () => {
|
||||
return (
|
||||
<div className={styles.layout}>
|
||||
<Header />
|
||||
Loading…
Add table
Add a link
Reference in a new issue