Re-did list components

This commit is contained in:
2022-01-10 00:48:15 +01:00
parent 97c23fa895
commit 6615827b29
8 changed files with 278 additions and 180 deletions

View File

@@ -0,0 +1,25 @@
<template>
<ResultsSection title="Requests" :apiFunction="getRequests" />
</template>
<script>
import ResultsSection from "./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>