mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
9 lines
167 B
TypeScript
9 lines
167 B
TypeScript
import React from 'react';
|
|
import '../styles/globals.css';
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return <Component {...pageProps} />;
|
|
}
|
|
|
|
export default MyApp;
|