UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

13 lines (12 loc) 311 B
import React from "react"; export interface AddressInfoProps { name?: string; streetAddress: string; streetAddress2?: string; careOf?: string; postalCode: string; city: string; region?: string; countryCode: string; } export declare const AddressInfo: React.FC<AddressInfoProps>;