This is a post for testing
import { useEffect } from 'react';
import '@/styles/global.css';
const MyApp = ({ pageProps }) => {
useEffect(() => { document.title = 'hello world'; }, []); return <Component {...pageProps} />;
};
export default MyApp;