This repository has been archived on 2023-05-03. You can view files and clone it, but cannot push or open issues or pull requests.
ocp-wg-frontend/src/views/admin/Settings.svelte
2022-11-18 19:41:03 +07:00

16 lines
367 B
Svelte

<script>
// core components
import CardSettings from "components/Cards/CardSettings.svelte";
import CardProfile from "components/Cards/CardProfile.svelte";
export let location;
</script>
<div class="flex flex-wrap">
<div class="w-full lg:w-8/12 px-4">
<CardSettings />
</div>
<div class="w-full lg:w-4/12 px-4">
<CardProfile />
</div>
</div>