mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00: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;
|