bravo68web-portfolio-nextjs/pages/_app.js

14 lines
260 B
JavaScript
Raw 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";
2021-11-30 16:36:48 +00:00
2022-05-02 12:16:18 +00:00
function MyPortfolio({ Component, pageProps }) {
return (
<>
2022-08-19 18:03:24 +00:00
{/* <CustomCursor /> */}
<Component {...pageProps} />
</>
)
2021-11-30 16:36:48 +00:00
}
2022-05-02 12:16:18 +00:00
export default MyPortfolio;