16 lines
448 B
Vue
16 lines
448 B
Vue
<script setup>
|
|
import AdminAppLayout from "../../../../resources/js/layouts/AdminAppLayout.vue";
|
|
import ShadowedBox from "../../../Views/Components/ShadowedBox.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<AdminAppLayout title="Administration">
|
|
<shadowed-box style="width: 95%; margin: 20px auto; padding: 20px; overflow-x: hidden;">
|
|
<h2>Administration</h2>
|
|
</shadowed-box>
|
|
</AdminAppLayout>
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|