{{> withClassNameImport }};
import { Component } from 'react';

{{> styleImport }};

interface State {}

{{ withClassNameProps }} {}

export class {{pascalCase name }} extends Component<Props, State> {
  constructor(props: Props) {
    super(props);

    this.state = {};
  }

  render() {
    return (
      <{{ templateBaseComponent }} {{> withClassNameClassName }} {{> testId }}={"{{kebabCase name }}-root"}>
        {{ name }}
      </{{ templateBaseComponent }}>
    );
  }
}
