12 lines
223 B
Vue
12 lines
223 B
Vue
<script setup>
|
|
import AdminFeeds from '../components/AdminFeeds.vue'
|
|
import AdminSettings from '../components/AdminSettings.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<main>
|
|
<AdminSettings />
|
|
<AdminFeeds />
|
|
</main>
|
|
</template>
|