summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/security_configuration/components/section_layout.vue
blob: 1e1f83a6d991951279e2add62ca8de0dd0f57315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script>
export default {
  name: 'SectionLayout',
  props: {
    heading: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <div class="row">
    <div class="col-lg-5">
      <h2 class="gl-font-size-h2 gl-mt-0">{{ heading }}</h2>
      <slot name="description"></slot>
    </div>
    <div class="col-lg-7">
      <slot name="features"></slot>
    </div>
  </div>
</template>