class Text { constructor(text) { this.text = text; return { text: this.text, }; } } export default Text;