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.
 
 
 
pizza.krasnikov.pro/.history/pages/[pizza]_20220602160924.tsx

17 lines
501 B

import React from 'react';
import { useRouter } from 'next/router';
import classNames from 'classnames';
export const PizzaMod: React.FC = () => {
return(
<div id="openModal" className={'modal'}>
<div className={classNames('modal_dialog ')}>
<div className={classNames('modal_content ')}>
<div className='modal_body'>
dfdfdfdf
</div>
</div>
</div>
</div>
)
};