diff options
Diffstat (limited to 'src/pages/Surveys/index.js')
-rw-r--r-- | src/pages/Surveys/index.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/pages/Surveys/index.js b/src/pages/Surveys/index.js index 69e854f..558dc06 100644 --- a/src/pages/Surveys/index.js +++ b/src/pages/Surveys/index.js @@ -1,3 +1,11 @@ +import { Stack } from "@mui/material"; +import SurveysList from "./SurveysList"; + export default function Surveys() { - return <>Surveys</>; + return ( + <Stack direction={"column"} sx={{ height: "100%" }}> + <h2>Surveys</h2> + <SurveysList /> + </Stack> + ); } |