import { useRouter } from "next/router"; import { MdErrorOutline } from "react-icons/md"; import { Box, Button, Text } from "theme-ui"; import { SIMULATOR_WINDOW_ID } from "@/legacy/lib/consts"; export const DeprecatedMockConfigMessage = () => { const router = useRouter(); return ( Your mock data has moved You can now edit directly your mock data in the new Slice Simulator. ); };