aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/Surveys/index.js
blob: 558dc06c93a24dc508878f028bddd91b1f2e0b9f (plain)
1
2
3
4
5
6
7
8
9
10
11
import { Stack } from "@mui/material";
import SurveysList from "./SurveysList";

export default function Surveys() {
  return (
    <Stack direction={"column"} sx={{ height: "100%" }}>
      <h2>Surveys</h2>
      <SurveysList />
    </Stack>
  );
}