'use client' import styles from './style.module.css' export default function ErrorBoundary({ error, reset }) { return ( <>

An error occurred: {error.message}

) }