You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
498 B

import React from 'react';
type Props = { children: React.ReactNode };
export const DeliveryArea: React.FC<Props> = ({children}) => {
return (
<>
<p>Зона доставки пиццы</p>
<script type="text/javascript"
async src="https://api-maps.yandex.ru/services/constructor/1.0/js/?um=constructor%3A0f873f2d98aebf475fc734808928e092d0162bd9fac2fbce8c1b504870f76ae0&amp;width=100%25&amp;height=400&amp;lang=ru_RU&amp;scroll=true">
</script>
</>
);
};