go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/chirp/pkg/static/_nextjs/src/pages/_app.tsx (about)

     1  /**
     2   * Copyright (c) 2024 - Present. Will Charczuk. All rights reserved.
     3   * Use of this source code is governed by a MIT license that can be found in the LICENSE file at the root of the repository.
     4   */
     5  import type { AppProps } from 'next/app';
     6  import * as React from 'react-dom';
     7  import './css/site.css';
     8  
     9  export default function App({ Component, pageProps }: AppProps) {
    10    return <Component {...pageProps} />
    11  }