import React from 'react'; import PageContentBlock from '@/components/elements/PageContentBlock'; interface Props { title?: string; message: string; } export default ({ title, message }: Props) => (

{ title || 'Something went wrong!' }

{message}

);