mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-13 17:25:41 +00:00
8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
import '../styles/globals.css';
|
|
|
|
function App({Component, pageProps}) {
|
|
return <Component {...pageProps} />
|
|
}
|
|
|
|
export default App;
|