From 71c2fcf00bf00a02633681c8aa2bbd0608652dd4 Mon Sep 17 00:00:00 2001 From: crazywoola Date: Wed, 21 Jun 2023 17:24:45 +0800 Subject: [PATCH] feat: add details --- components/error/index.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/components/error/index.tsx b/components/error/index.tsx index e6e487a..55ed03d 100644 --- a/components/error/index.tsx +++ b/components/error/index.tsx @@ -1,11 +1,14 @@ 'use client' import React, { FC } from 'react' -import styles from './style.module.scss' interface ErrorPageProps {} const ErrorPage: FC = ({}) => { - return
Error
+ return ( +
+ We are sorry, but something went wrong. +
+ ) } export default ErrorPage