bravo68web-portfolio-nextjs/pages/_app.js

17 lines
354 B
JavaScript
Raw Permalink Normal View History

2022-01-18 09:50:39 +00:00
import "../styles/globals.css";
2022-08-19 18:03:24 +00:00
// import CustomCursor from "components/providers/cursor";
2023-06-12 08:03:13 +00:00
import ErrorBoundary from "../components/errorBoundary";
2021-11-30 16:36:48 +00:00
2022-05-02 12:16:18 +00:00
function MyPortfolio({ Component, pageProps }) {
2023-06-12 08:03:13 +00:00
return (
<>
{/* <CustomCursor /> */}
<ErrorBoundary>
<Component {...pageProps} />
</ErrorBoundary>
</>
);
2021-11-30 16:36:48 +00:00
}
2022-05-02 12:16:18 +00:00
export default MyPortfolio;