import Image from 'next/image' import { FunctionComponent } from 'react' const FourOhFour: FunctionComponent<{ 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