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