Renamed/moved files around

This commit is contained in:
2022-07-26 19:49:54 +02:00
parent 1f51cead5c
commit 023b2cd86e
15 changed files with 29 additions and 29 deletions

25
src/pages/RequestPage.vue Normal file
View File

@@ -0,0 +1,25 @@
<template>
<ResultsSection title="Requests" :apiFunction="getRequests" />
</template>
<script>
import ResultsSection from "@/components/ResultsSection";
import { getRequests } from "@/api";
export default {
components: { ResultsSection },
methods: {
getRequests: getRequests
}
};
</script>
<style lang="scss" scoped>
.fullwidth-button {
width: 100%;
margin: 1rem 0;
padding-bottom: 2rem;
display: flex;
justify-content: center;
}
</style>