import React from 'react'; import styles from './devpopup.module.css'; import { Button } from '../../Button'; import { ETextStyles } from '../../texts'; interface IDevPopup { setClose(a: boolean): void title: string, text: string, } export function DevPopup({ setClose, title, text }: IDevPopup) { return (

{title}

{text}

); }