import * as React from "react"; import './{{TITLE}}.scss'; import {{{TITLE}}Props} from "./index"; export default class {{TITLE}} extends React.Component<{{TITLE}}Props> { get allPropertiesAsString() { return JSON.stringify(this.props.cqComponent); } render() { return (

Greetings from your newly created {{TITLE}}-component!

{this.allPropertiesAsString}
); } }