import Image from 'next/image' const FourOhFour: React.FC<{ errorMsg: string }> = ({ errorMsg }) => { return (
404
Oops, that's a four-oh-four.
{errorMsg}
Press{' '} F12{' '} and open devtools for more details, or seek help at{' '} onedrive-vercel-index discussions .
) } export default FourOhFour