mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
9 lines
203 B
TypeScript
9 lines
203 B
TypeScript
import type { AppProps } from "next/app";
|
|
import "@/src/styles/global.css";
|
|
|
|
function App({ Component, pageProps }: AppProps): JSX.Element {
|
|
return <Component {...pageProps} />;
|
|
}
|
|
|
|
export default App;
|