mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 22:59:33 +01:00
11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
|
|
// styles
|
||
|
|
import "styles/globals.css";
|
||
|
|
// types
|
||
|
|
import type { AppProps } from "next/app";
|
||
|
|
|
||
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
||
|
|
return <Component {...pageProps} />;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default MyApp;
|