<template>
  <ADJ_masc_fem :standardisations="standardisations"  :dictionary="dictionary"></ADJ_masc_fem>
</template>

<script>
import ADJ_masc_fem from './AdjectiveMF.vue'

export default {
  name: "ADJ_masc_fem_fem",
  props: {
    standardisations: Array,
    dictionary: String
  },
  components: {
    ADJ_masc_fem
  }
}
</script>