import React from 'react'; import { useHistory } from 'react-router-dom'; import Box from '../../ui/box'; import Dialog from '../../ui/dialog'; import Typography from '../../ui/typography/typography'; import { COLORS, TYPOGRAPHY, TEXT_ALIGN, FONT_WEIGHT, DISPLAY, } from '../../../helpers/constants/design-system'; import { useI18nContext } from '../../../hooks/useI18nContext'; import Button from '../../ui/button'; import { EXPERIMENTAL_ROUTE } from '../../../helpers/constants/routes'; import { setCollectiblesDetectionNoticeDismissed } from '../../../store/actions'; export default function CollectiblesDetectionNotice() { const t = useI18nContext(); const history = useHistory(); return ( ); }