import React from 'react' import Modal from './Modal' import Button from './Button' import { ElementTitle } from './styles' import useLocalStorageState from '../hooks/useLocalStorageState' const AlphaModal = ({ isOpen, onClose, }: { isOpen: boolean onClose?: (x) => void }) => { const [, setAlphaAccepted] = useLocalStorageState('mangoAlphaAccepted', false) return (
next Mango Markets UI V2
This is an unaudited alpha release of Mango Markets. The software is provided 'AS IS' without warranty of any kind.
) } export default React.memo(AlphaModal)