import { NextPage } from 'next' import Link from 'next/link' import dynamic from 'next/dynamic' const Container = dynamic(() => import('@components/Container')) const MyError: NextPage = () => { return (

인터넷이 끊어졌나봐요...

인터넷 연결을 확인하시고 다시 시도 해주세요!

상태 페이지
) } export default MyError