Browse Source

fix: lint issue

pull/133/head
Himself65 4 years ago
parent
commit
a0fa7a05f4
  1. 6
      pages/_app.tsx

6
pages/_app.tsx

@ -1,6 +1,6 @@
import { AppProps } from "next/app";
import "nextra-theme-docs/style.css";
import { AppProps } from 'next/app';
import 'nextra-theme-docs/style.css';
export default function Nextra ({ Component, pageProps }: AppProps) {
export default function Nextra({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}

Loading…
Cancel
Save