<template>
<div class="text-block" v-html="value.text"></div>
</template>
<script>
export default {
props: ['value']
}
</script>
<style scoped lang="scss">
.text-block {
margin-bottom: 30px;
</style>