Cristiano Magro
2024-12-30 32b5995968182d420a1ef9ffda6528208e457665
1
2
3
4
5
6
7
8
9
10
11
12
<template>
  <section>
    <h2>{{ topicTitle }}</h2>
    <p>{{ text }}</p>
  </section>
</template>
 
<script>
export default {
  props: ['topicTitle', 'text'],
};
</script>