aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-tailwind/apps/docs/src/pages/_app.tsx
blob: cab70f55cec7cb5631f933372b198232e60e903d (plain) (blame)
1
2
3
4
5
6
7
8
9
import "../styles/globals.css";
// include styles from the ui package
import "ui/styles.css";

import type { AppProps } from "next/app";

export default function MyApp({ Component, pageProps }: AppProps) {
  return <Component {...pageProps} />;
}