mirror of
https://github.com/bitinflow/ui.git
synced 2026-03-13 13:45:59 +00:00
16 lines
202 B
Vue
16 lines
202 B
Vue
<template>
|
|
<div class="container mx-auto px-4 lg:px-16 py-8 space-y-8">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "BitinflowContainer"
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|