bravo68web-portfolio-nextjs/pages/_app.js

9 lines
216 B
JavaScript
Raw Normal View History

2022-01-18 09:50:39 +00:00
import "../styles/globals.css";
2022-05-02 12:16:18 +00:00
// import { loadCursor } 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 <Component {...pageProps} />;
2021-11-30 16:36:48 +00:00
}
2022-05-02 12:16:18 +00:00
export default MyPortfolio;