0.0.11 • Published 3 years ago

mui-next v0.0.11

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

mui-next

The simplest SSR helper for Next.js and MaterialUI.

Installing

Run:

npm install mui-next

or:

yarn add mui-next

Usage

Create pages/_app.tsx file:

import { AppProps } from 'next/app';
import MuiNext from 'mui-next';

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

export default MyApp;
0.0.11

3 years ago

0.0.10

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago