12 lines
277 B
TypeScript
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;
|