/**
 * TEAM: frontend_infra
 * @flow
 */

import * as React from "react";

import PhoneNumberInput from "../PhoneNumberInput";

/**
 * @title Phone Number Input Basic Usage
 */
export default function PhoneNumberInputBasicUsage(): React.Node {
  return (
    <PhoneNumberInput value="" size="m" onChange={() => {}} placeholder="" />
  );
}
