interface ButtonProps {}

const Button = ({}: ButtonProps) => {
  return <button type="button">first button</button>;
};

export default Button;