aboutsummaryrefslogtreecommitdiff
path: root/examples/css-stress-test/pages/_app.tsx
blob: 47b7ffa5674a2cc39b95c748a8da65ca82d7ba3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// import "../src/index.css";

import App from "next/app";

class MyApp extends App {
  render() {
    const { Component, pageProps } = this.props;
    return <Component {...pageProps} />;
  }
}

export default MyApp;