import React from 'react';
type Props = { children: React.ReactNode };
export const DeliveryArea: React.FC<Props> = ({children}) => {
return (
);
};