mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-14 11:45: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;
|