Some checks failed
Backend Actions / check (push) Failing after 3m26s
Frontend Actions / check (push) Failing after 3m17s
Backend Actions / test (push) Failing after 3m20s
Frontend Actions / test (push) Successful in 51s
Frontend Actions / build (push) Successful in 56s
Backend Actions / build (push) Failing after 10m57s
13 lines
228 B
Vue
13 lines
228 B
Vue
<template>
|
|
<div>
|
|
<AppHeader />
|
|
<div class="grid grid-cols-12">
|
|
<ServerSidebar class="col-span-2" />
|
|
<div class="col-span-10">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
<AppFooter />
|
|
</div>
|
|
</template>
|