import React, { FunctionComponent } from 'react';

type BtnPubProps = {
  label?: string;
};

const BtnPub: FunctionComponent<BtnPubProps> = ({ label = 'Default Button Label' }): JSX.Element => {
  return (
    <div>
      <h2>Button with text</h2>
      <button>Label: {label}</button>
    </div>
  );
};

export default BtnPub;
