mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
21 lines
464 B
TypeScript
21 lines
464 B
TypeScript
import "../styles/globals.css";
|
|
import "styles/editor.css";
|
|
import type { AppProps } from "next/app";
|
|
|
|
import GlobalContextProvider from "contexts/globalContextProvider";
|
|
|
|
import CommandPalette from "components/command-palette";
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<GlobalContextProvider>
|
|
<>
|
|
<CommandPalette />
|
|
<Component {...pageProps} />
|
|
</>
|
|
</GlobalContextProvider>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|