import * as React from 'react';

interface IComponentProps {
  type: string;
  isPreview: boolean;
  readOnly: boolean;
  disabled: boolean;
};

export default function <%= className %>(props: IComponentProps) {
  const { type, isPreview, readOnly, disabled } = props;

  return (
    <div className="aliretail-<%= comName %>" >Label: {type}</div>
  );
}
