2
0
Files
cal/calcom/apps/swagger/pages/_app.tsx
2024-08-09 00:39:27 +02:00

12 lines
277 B
TypeScript

import "highlight.js/styles/default.css";
import { type AppProps } from "next/app";
import "swagger-ui-react/swagger-ui.css";
import "../styles/globals.css";
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}
export default MyApp;